ecore_wl2: revert upstream patch. 36/200936/1
authorHosang Kim <hosang12.kim@samsung.com>
Wed, 6 Mar 2019 08:36:22 +0000 (17:36 +0900)
committerHosang Kim <hosang12.kim@samsung.com>
Wed, 6 Mar 2019 08:36:22 +0000 (17:36 +0900)
Tizen's enlightenment does not use multiplied value.

@tizen_only

Change-Id: I05788e26aa47eea307b7a5270bf5e35e30f14e90

src/lib/ecore_wl2/ecore_wl2_input.c

index def1474..194af3c 100644 (file)
@@ -527,7 +527,9 @@ _ecore_wl2_input_mouse_wheel_send(Ecore_Wl2_Input *input, unsigned int axis, int
    ev->modifiers = input->keyboard.modifiers;
    ev->x = input->pointer.sx;
    ev->y = input->pointer.sy;
-   value /= 10;
+   //TIZEN_ONLY(20190306): revert upstream patch
+   //value /= 10;
+   //
 
    if (axis == WL_POINTER_AXIS_VERTICAL_SCROLL)
      {