elementary/transit - fix the transit to launch the effect right away when elm_transit_go is called

SVN revision: 77949
This commit is contained in:
ChunEon Park 2012-10-13 06:43:01 +00:00
parent ef0f67781c
commit 73931a889c
2 changed files with 5 additions and 1 deletions

View File

@ -602,3 +602,7 @@
* Fix conform widget to be part of focus chain.
2012-10-13 ChunEon Park (Hermet)
* Fix the transit to launch the effect directly when elm_transit_go is called.

View File

@ -239,7 +239,6 @@ _transit_chain_go(Elm_Transit *transit)
{
ELM_TRANSIT_CHECK_OR_RETURN(transit);
elm_transit_go(transit);
_transit_animate_cb(transit);
}
static void
@ -675,6 +674,7 @@ elm_transit_go(Elm_Transit *transit)
transit->time.delayed = 0;
transit->time.begin = ecore_loop_time_get();
transit->animator = ecore_animator_add(_transit_animate_cb, transit);
_transit_animate_cb(transit);
}
EAPI void