Fix the elm_image which is made up of a edje object can call a callback function

SVN revision: 79261
This commit is contained in:
Jaehwan Kim 2012-11-14 03:27:15 +00:00
parent 0d2e33b544
commit 869f71a514
2 changed files with 3 additions and 0 deletions

View File

@ -54,6 +54,7 @@ Fixes:
* Fix the elm_flip to accept proxy object.
* Fix wrong parameter for thumbnail error in elm_icon.
* Fix missing selected event in elm_index (elm_index_item_selected_set)
* Fix the elm_image which is made up of a edje object can call a callback function
Removals:

View File

@ -221,6 +221,8 @@ _elm_image_edje_file_set(Evas_Object *obj,
evas_object_smart_member_add(sd->img, obj);
if (sd->show) evas_object_show(sd->img);
evas_object_clip_set(sd->img, pclip);
evas_object_event_callback_add
(sd->img, EVAS_CALLBACK_MOUSE_UP, _on_mouse_up, obj);
}
sd->edje = EINA_TRUE;