ami pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=75aa39ff8d447731005ee1ac6494ec461c3e3361

commit 75aa39ff8d447731005ee1ac6494ec461c3e3361
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Wed Jun 7 18:50:46 2017 +0900

    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 b52013e3a3..c1992c585d 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));
 }

-- 


Reply via email to