set coords for dnd leave events and remove weird FIXME

This commit is contained in:
Mike Blumenkrantz 2013-05-30 11:28:42 +01:00
parent fce97f9d46
commit 8df93a006d
1 changed files with 2 additions and 3 deletions

View File

@ -965,9 +965,8 @@ _e_drag_end(int x, int y)
/* Just leave */
E_Event_Dnd_Leave leave_ev;
/* FIXME: We don't need x and y in leave */
leave_ev.x = 0;
leave_ev.y = 0;
leave_ev.x = x;
leave_ev.y = y;
EINA_LIST_FOREACH(_active_handlers, l, h)
{