diff options
author | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-05-03 16:00:18 -0300 |
---|---|---|
committer | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-05-03 16:45:33 -0300 |
commit | 4b9a80a0630e89f6eca2ee9430092038af87ac6f (patch) | |
tree | 64162ef1e97ecc66280dfc557e5eb6ba5000429d /src/lib/ecore_input_evas | |
parent | f09e493bc2bb9fed67b2d6e2faa4f19142394191 (diff) |
ecore/evas events: Use evas_event_input_mouse_move to report events.
Ecore_Evas_Input should use this function to report mouse move events.
The previous used function should be used to refeed events, or to
artificially feed mouse move events to the canvas. Basically every other
feed_mouse_move use case that is not an event from the input system.
Diffstat (limited to 'src/lib/ecore_input_evas')
-rw-r--r-- | src/lib/ecore_input_evas/ecore_input_evas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_input_evas/ecore_input_evas.c b/src/lib/ecore_input_evas/ecore_input_evas.c index c98c30829e..ff5682b889 100644 --- a/src/lib/ecore_input_evas/ecore_input_evas.c +++ b/src/lib/ecore_input_evas/ecore_input_evas.c | |||
@@ -412,7 +412,7 @@ ecore_event_evas_mouse_move(void *data EINA_UNUSED, int type EINA_UNUSED, void * | |||
412 | if (lookup->move_mouse) | 412 | if (lookup->move_mouse) |
413 | lookup->move_mouse(lookup->window, e->x, e->y, e->timestamp); | 413 | lookup->move_mouse(lookup->window, e->x, e->y, e->timestamp); |
414 | else | 414 | else |
415 | evas_event_feed_mouse_move(lookup->evas, e->x, e->y, e->timestamp, | 415 | evas_event_input_mouse_move(lookup->evas, e->x, e->y, e->timestamp, |
416 | NULL); | 416 | NULL); |
417 | } | 417 | } |
418 | else | 418 | else |