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 b3c34a50bf753eda7512687aa4380fa37519073f..1b9859854c3c7e9229f29b051ee8c191c001149c 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 1e773d0c25a67e5bb3b87cf090b5c7fbc09da060..e8b57ef02c1101e4f72e85a9a90490a27dcc945d 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 7f878d9b1253c7981150b6da3555a8fb13ecc98f..f5f9ba4c8046acd04633378243b45fabe0ecd9b0 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;