Efl.Ui.Image: fix efl.player.playable.get API
authorAmitesh Singh <amitesh.sh@samsung.com>
Wed, 7 Jun 2017 09:50:46 +0000 (18:50 +0900)
committerAmitesh Singh <amitesh.sh@samsung.com>
Wed, 7 Jun 2017 09:52:08 +0000 (18:52 +0900)
an edje obj is always playable. return TRUE always.

@fix

src/lib/elementary/efl_ui_image.c

index b52013e..c1992c5 100644 (file)
@@ -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));
 }