billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=5bf1dd9ca2c5952b156fef0ea67e8c48586e0cd0
commit 5bf1dd9ca2c5952b156fef0ea67e8c48586e0cd0 Author: Boris Faure <bill...@gmail.com> Date: Sun Oct 20 01:09:33 2013 +0200 now that T441 is fixed, always remove links on MOUSE_OUT --- src/bin/termio.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/bin/termio.c b/src/bin/termio.c index 71c5123..a8989e2 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -3189,7 +3189,6 @@ _smart_cb_mouse_out(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, sd->mouse.cx = -1; sd->mouse.cy = -1; sd->link.suspend = EINA_FALSE; - _remove_links(sd, obj); } else { @@ -3199,8 +3198,7 @@ _smart_cb_mouse_out(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, sd->mouse.cx = cx; sd->mouse.cy = cy; } - if ((sd->mouse.cx < 0) || (sd->mouse.cy < 0)) - _remove_links(sd, obj); + _remove_links(sd, obj); } static void --