From: Myungjae Lee Date: Mon, 27 Sep 2010 10:13:49 +0000 (+0900) Subject: [entry] fix bug in entry copy paste popup menu X-Git-Tag: origin~121^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ecb6e1c27868e28bad101c6523f02e868e38241;p=framework%2Fuifw%2Felementary.git [entry] fix bug in entry copy paste popup menu --- diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 75d5a53..3e2d623 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -1131,7 +1131,7 @@ _signal_selection_changed(void *data, Evas_Object *obj __UNUSED__, const char *e Widget_Data *wd = elm_widget_data_get(data); if (!wd) return; wd->have_selection = EINA_TRUE; - wd->selmode = EINA_FALSE; + wd->selmode = EINA_TRUE; evas_object_smart_callback_call(data, SIG_SELECTION_CHANGED, NULL); elm_selection_set(ELM_SEL_PRIMARY, obj, ELM_SEL_FORMAT_MARKUP, elm_entry_selection_get(data));