diff --git a/src/bin/ephoto_cropper.c b/src/bin/ephoto_cropper.c index ee00b64..b5c8998 100644 --- a/src/bin/ephoto_cropper.c +++ b/src/bin/ephoto_cropper.c @@ -17,7 +17,7 @@ struct _Ephoto_Cropper int starty; int offsetx; int offsety; - int resizing; + Eina_Bool resizing; }; static void diff --git a/src/bin/ephoto_single_browser.c b/src/bin/ephoto_single_browser.c index 0d7a859..84e0600 100644 --- a/src/bin/ephoto_single_browser.c +++ b/src/bin/ephoto_single_browser.c @@ -204,6 +204,11 @@ _viewer_add(Evas_Object *parent, const char *path, Ephoto_Single_Browser *sb) _image_mouse_up_cb, sb); elm_table_pack(v->table, v->image, 0, 0, 1, 1); evas_object_show(v->image); + if (elm_image_animated_available_get(v->image)) + { + elm_image_animated_set(v->image, EINA_TRUE); + elm_image_animated_play_set(v->image, EINA_TRUE); + } return v->scroller;