now that T441 is fixed, always remove links on MOUSE_OUT

This commit is contained in:
Boris Faure 2013-10-20 01:09:33 +02:00
parent ab982fa9a6
commit 5bf1dd9ca2
1 changed files with 1 additions and 3 deletions

View File

@ -3189,7 +3189,6 @@ _smart_cb_mouse_out(void *data, Evas *e EINA_UNUSED, Evas_Object *obj,
sd->mouse.cx = -1; sd->mouse.cx = -1;
sd->mouse.cy = -1; sd->mouse.cy = -1;
sd->link.suspend = EINA_FALSE; sd->link.suspend = EINA_FALSE;
_remove_links(sd, obj);
} }
else else
{ {
@ -3199,7 +3198,6 @@ _smart_cb_mouse_out(void *data, Evas *e EINA_UNUSED, Evas_Object *obj,
sd->mouse.cx = cx; sd->mouse.cx = cx;
sd->mouse.cy = cy; sd->mouse.cy = cy;
} }
if ((sd->mouse.cx < 0) || (sd->mouse.cy < 0))
_remove_links(sd, obj); _remove_links(sd, obj);
} }