raster pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=5958eff3380552febfe4dba397ee04dae9ae31d8
commit 5958eff3380552febfe4dba397ee04dae9ae31d8 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Thu Oct 31 16:07:05 2013 +0900 unbreak inlined media being unparented when tab selector is used 82f4d3546a78a8f0280ac912816e86f6b2c77404 introduced this bug (oct 20 2013 - discomfitor). now missing a _smart_apply() causes the bug. why - not sure. --- src/bin/termio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/termio.c b/src/bin/termio.c index cc234d3..4168566 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -4489,6 +4489,8 @@ termio_mouseover_suspend_pushpop(Evas_Object *obj, int dir) { if (sd->anim) ecore_animator_del(sd->anim); sd->anim = NULL; + _smart_apply(obj); +// evas_object_smart_callback_call(obj, "changed", NULL); } else _smart_update_queue(obj, sd); --