Efl.Ui.Image: fix efl.player.playable.get API

an edje obj is always playable. return TRUE always.

@fix
This commit is contained in:
Amitesh Singh 2017-06-07 18:50:46 +09:00
parent 9150553eac
commit 75aa39ff8d
1 changed files with 1 additions and 1 deletions

View 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));
}