fixed valid click area for tap event 91/89891/1
authorchanywa <cbible.kim@samsung.com>
Mon, 26 Sep 2016 23:36:20 +0000 (08:36 +0900)
committerchanywa <cbible.kim@samsung.com>
Tue, 27 Sep 2016 09:53:27 +0000 (18:53 +0900)
Change-Id: I210058a08a58ef60ff43e5fbd25591a5cbde00ee

capi-maps-service.changes
packaging/capi-maps-service.spec
src/view/inertial_gesture.cpp

index b3c34a5..1b98598 100644 (file)
@@ -1,3 +1,8 @@
+[Version]   capi-maps-service_0.6.6
+[Date]      27 Sep 2016
+[Title]     fixed click area, and resizing the marker which image file changed
+[Developer] Seechan Kim <cbible.kim@samsung.com>
+
 [Version]   capi-maps-service_0.6.5
 [Date]      19 Sep 2016
 [Title]     fixed descrpitions
index 1e773d0..e8b57ef 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-maps-service
 Summary:    Tizen Maps Service API
-Version:    0.6.5
+Version:    0.6.6
 Release:    1
 Group:      Location/API
 License:    Apache-2.0
index 7f878d9..f5f9ba4 100644 (file)
@@ -123,7 +123,7 @@ void view::inertial_gesture::up(int finger_no, const touch_point &tp)
 
        int trajectory = get_trajectory_effective_length(_down[finger_no], tp);
        MAPS_LOGD("trajectory=%d", trajectory);
-       if (trajectory <= 5) dt = 0;
+       if (trajectory <= __CLICK_AREA) dt = 0;
 
        if (dt == 0) {
                _derivative_x[finger_no] = .0;