From: Doyoun Kang Date: Mon, 10 Apr 2017 09:39:38 +0000 (+0900) Subject: e_comp_object: add code to send launch_real,done event if the window doesn't use... X-Git-Tag: submit/tizen_3.0/20170410.095750^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c4753a25a8fd5cac313939fbec91142cbb761a6;p=platform%2Fupstream%2Fenlightenment.git e_comp_object: add code to send launch_real,done event if the window doesn't use effect There was a bug that "e,action,launch_real,done" event is not published if the window doesn't use effect. So, we added code to send the event when the window which doesn't use effect is launched. Change-Id: I57924234dbb7a83574a10dccb570ab579248f5c5 --- diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index d98ff20d13..e5927fb1ef 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -954,6 +954,12 @@ _e_comp_object_animating_end(E_Comp_Object *cw) if (!cw->ec->extra_animating) { cw->ec->launching = EINA_FALSE; + if (cw->ec->first_mapped) + { + ELOGF("LAUNCH", "SHOW real win", cw->ec->pixmap, cw->ec); + e_comp_object_signal_emit(cw->ec->frame, "e,action,launch_real,done", "e"); + } + e_comp_object_signal_emit(cw->ec->frame, "e,action,launch,done", "e"); } }