From 75aa39ff8d447731005ee1ac6494ec461c3e3361 Mon Sep 17 00:00:00 2001 From: Amitesh Singh Date: Wed, 7 Jun 2017 18:50:46 +0900 Subject: [PATCH] Efl.Ui.Image: fix efl.player.playable.get API an edje obj is always playable. return TRUE always. @fix --- src/lib/elementary/efl_ui_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_image.c b/src/lib/elementary/efl_ui_image.c index b52013e..c1992c5 100644 --- a/src/lib/elementary/efl_ui_image.c +++ b/src/lib/elementary/efl_ui_image.c @@ -1366,7 +1366,7 @@ elm_image_animated_available_get(const Evas_Object *obj) EOLIAN static Eina_Bool _efl_ui_image_efl_player_playable_get(Eo *obj, Efl_Ui_Image_Data *sd) { - if (sd->edje) return EINA_FALSE; + if (sd->edje) return EINA_TRUE; return evas_object_image_animated_get(elm_image_object_get(obj)); } -- 2.7.4