/* (input->pointer.sy > window->geometry.h)) */
/* return; */
+ const char *tmp;
+ if ((tmp = getenv("DISABLE_HOVERING")) && (atoi(tmp) == 1) && (input->grab.count == 0))
+ return;
+
_ecore_wl2_input_mouse_move_send(input, window, 0);
}
}
if (input->focus.pointer)
- _ecore_wl2_input_mouse_down_send(input, input->focus.pointer,
- 0, button, timestamp);
+ {
+ const char *tmp;
+ if ((tmp = getenv("DISABLE_HOVERING")) && (atoi(tmp) == 1) && (input->grab.count == 0))
+ _ecore_wl2_input_mouse_move_send(input, input->focus.pointer, 0);
+
+ _ecore_wl2_input_mouse_down_send(input, input->focus.pointer,
+ 0, button, timestamp);
+ }
input->grab.count++;
}