Bug: "exebuf on other zones doesn't allow mouse to work properly (only zone/screen 0 works properly)".

There is no need to add zone coordinates while computing fed mouse event.


SVN revision: 36452
This commit is contained in:
Chidambar Zinnoury 2008-10-05 17:34:41 +00:00
parent e051adccc7
commit 2e44f4f6fc
1 changed files with 2 additions and 2 deletions

View File

@ -1358,8 +1358,8 @@ _e_exebuf_cb_mouse_move(void *data, int type, void *event)
}
}
evas_event_feed_mouse_move(exebuf->evas, ev->x - exebuf->x +
exebuf->zone->x, ev->y - exebuf->y + exebuf->zone->y, ev->time, NULL);
evas_event_feed_mouse_move(exebuf->evas, ev->x - exebuf->x,
ev->y - exebuf->y, ev->time, NULL);
return 1;
}