summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2016-08-29 17:04:57 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2016-08-30 15:13:40 +0900
commit68be4f49ed924977ae72d1d109fb553cdcfc8001 (patch)
tree6a6d124a050c77dee07afac4ba8e5e8567cca206
parentb004b8a4f986f49e23c3314e7f59d4fb8f4fd524 (diff)
downloadefl-68be4f49ed924977ae72d1d109fb553cdcfc8001.tar.gz
evas events: Fix mistake in multi_move
I guess (can't test) that multi touch was broken, as the position of the event was set to the position of the pointer on the canvas. Which means all fingers would be in the same spot, no matter what the real input. Copy & paste error.
-rw-r--r--src/lib/evas/canvas/evas_events.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/evas/canvas/evas_events.c b/src/lib/evas/canvas/evas_events.c
index 6a17cb427a..2075eb2170 100644
--- a/src/lib/evas/canvas/evas_events.c
+++ b/src/lib/evas/canvas/evas_events.c
@@ -2464,8 +2464,6 @@ _canvas_event_feed_multi_move_internal(Evas_Public_Data *e, Efl_Input_Pointer_Da
if ((!e->pointer.inside) && (e->pointer.mouse_grabbed == 0)) return;
evt = ev->eo;
- ev->cur.x = e->pointer.x;
- ev->cur.y = e->pointer.y;
ev->modifiers = &(e->modifiers);
ev->locks = &(e->locks);
ev->event_flags = e->default_event_flags;