From 758e33d1b0ff695d8cf5ac75d01d5f3175e144d7 Mon Sep 17 00:00:00 2001 From: "deasung.kim" Date: Tue, 7 Feb 2012 22:37:47 +0900 Subject: [PATCH] [bugfix:S1976, 1123, 1204] copy & paste popup is not displaying --- src/modules/ctxpopup_copypasteUI/copypaste.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/modules/ctxpopup_copypasteUI/copypaste.c b/src/modules/ctxpopup_copypasteUI/copypaste.c index 52c30b2..fe6f85b 100644 --- a/src/modules/ctxpopup_copypasteUI/copypaste.c +++ b/src/modules/ctxpopup_copypasteUI/copypaste.c @@ -28,10 +28,14 @@ struct _Elm_Entry_Context_Menu_Item }; static void _ctxpopup_hide(Evas_Object *popup); +static void _ctxpopup_position(Evas_Object *obj); static void _entry_move(void *data, Evas *e, Evas_Object *obj, void *event_info) { - _ctxpopup_hide(ext_mod->popup); + if (evas_pointer_button_down_mask_get(e)) + _ctxpopup_hide(ext_mod->popup); + else + _ctxpopup_position(data); } static void -- 2.7.4