diff --git a/src/lib/elementary/elm_photo.c b/src/lib/elementary/elm_photo.c index ea83e27915..0d6e94652a 100644 --- a/src/lib/elementary/elm_photo.c +++ b/src/lib/elementary/elm_photo.c @@ -74,6 +74,20 @@ _elm_photo_efl_ui_widget_theme_apply(Eo *obj, Elm_Photo_Data *sd) return int_ret; } +EOLIAN static void +_elm_photo_efl_ui_draggable_drag_target_set(Eo *obj EINA_UNUSED, + Elm_Photo_Data *pd EINA_UNUSED, + Eina_Bool set EINA_UNUSED) +{ +} + +EOLIAN static Eina_Bool +_elm_photo_efl_ui_draggable_drag_target_get(const Eo *obj EINA_UNUSED, + Elm_Photo_Data *pd EINA_UNUSED) +{ + return EINA_FALSE; +} + static void _icon_move_resize_cb(void *data, Evas *e EINA_UNUSED, diff --git a/src/lib/elementary/elm_photo.eo b/src/lib/elementary/elm_photo.eo index 790382d756..e91ef68bc8 100644 --- a/src/lib/elementary/elm_photo.eo +++ b/src/lib/elementary/elm_photo.eo @@ -9,5 +9,6 @@ class Elm.Photo extends Efl.Ui.Widget implements Efl.File, Efl.Ui.Clickable, Efl Efl.Object.constructor; Efl.File.file { set; } Efl.Ui.Widget.theme_apply; + Efl.Ui.Draggable.drag_target { get; set; } } }