fix a incorrect typo lange to range 20/128920/1
authorJengHyun Kang <jhyuni.kang@samsung.com>
Fri, 12 May 2017 05:25:00 +0000 (14:25 +0900)
committerJengHyun Kang <jhyuni.kang@samsung.com>
Fri, 12 May 2017 05:25:00 +0000 (14:25 +0900)
Change-Id: I0d70b673d1a7bd62a80deb98483bce34456e7734

src/e_mod_gesture_events.c
src/e_mod_main.h

index 13109ad..41c9954 100644 (file)
@@ -824,8 +824,8 @@ _e_gesture_process_tap_move(Ecore_Event_Mouse_Move *ev)
    diff_x = gesture->gesture_events.base_point[ev->multi.device].axis.x - ev->x;
    diff_y = gesture->gesture_events.base_point[ev->multi.device].axis.y - ev->y;
 
-   if (ABS(diff_x) > E_GESTURE_TAP_MOVING_LANGE ||
-       ABS(diff_y) > E_GESTURE_TAP_MOVING_LANGE)
+   if (ABS(diff_x) > E_GESTURE_TAP_MOVING_RANGE ||
+       ABS(diff_y) > E_GESTURE_TAP_MOVING_RANGE)
      {
         GTDBG("%d finger moving too large diff: (%d, %d)\n", ev->multi.device, diff_x, diff_y);
         _e_gesture_tap_cancel();
index 2c1aec1..869a42d 100644 (file)
@@ -34,7 +34,7 @@
 #define E_GESTURE_TAP_START_TIME 0.05
 #define E_GESTURE_TAP_DONE_TIME 1
 #define E_GESTURE_TAP_INTERVAL_TIME 1
-#define E_GESTURE_TAP_MOVING_LANGE 25
+#define E_GESTURE_TAP_MOVING_RANGE 25
 
 #define E_GESTURE_PAN_START_TIME 0.05
 #define E_GESTURE_PAN_MOVING_RANGE 15