elementary/transit - dont' elm_transit image animation use the image preloading

SVN revision: 81206
This commit is contained in:
ChunEon Park 2012-12-18 07:04:13 +00:00
parent da7e0b5e62
commit 2402d4aad9
3 changed files with 11 additions and 3 deletions

View File

@ -826,3 +826,7 @@
2012-12-18 Chueon Park (Hermet)
* Elm_transit image aniamtion effects supports elm_image object type.
2012-12-18 Chueon Park (Hermet)
* Don't Elm_transit image animation use image preloading to avoid image flickering.

View File

@ -96,6 +96,7 @@ Fixes:
* Fix naviframe's resize object problem when item was deleted.
* Fix the popup that returned invalid action buttons.
* Fix the naviframe to not have crash even if user deletes the naviframe in the transition finished cb.
* Fix Don't elm_transit image animation use the image preloading to avoid image flickering.
Removals:

View File

@ -2326,9 +2326,12 @@ _transit_effect_image_animation_op(Elm_Transit_Effect *effect, Elm_Transit *tran
{
if (elm_widget_type_check(obj, type, __func__) ||
elm_widget_type_check(obj, type_deprecated, __func__))
elm_image_file_set(obj,
eina_list_nth(image_animation->images, count),
NULL);
{
elm_image_file_set(obj,
eina_list_nth(image_animation->images, count),
NULL);
elm_image_preload_disabled_set(obj, EINA_TRUE);
}
}
}