diff --git a/ChangeLog b/ChangeLog index c1aefd057c..db3052f86f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-01-31 Jihoon Kim (jihoon) + + * edje entry : Remove ecore_imf_context_cursor_position_set in functions related to selection. + 2013-01-30 Christopher Michael (devilhorns) * Implement RandR 1.4 functions which were missing in our Ecore_X API diff --git a/NEWS b/NEWS index 8db24a64c3..a6b5ef5dbe 100644 --- a/NEWS +++ b/NEWS @@ -87,6 +87,7 @@ Improvements: * edje entry: move ecore_imf_context_cursor_position_set from mouse down event to mouse up event. * Use ecore_audio in edje-multisense * Ecore_Evas wayland-egl only renders now if last frame has been presented. + * edje entry : Remove ecore_imf_context_cursor_position_set in functions related to selection. Fixes: * Fix PPC (big endian) image codec bug. diff --git a/src/lib/edje/edje_entry.c b/src/lib/edje/edje_entry.c index 43e3c2f5fa..70ef36ce88 100644 --- a/src/lib/edje/edje_entry.c +++ b/src/lib/edje/edje_entry.c @@ -2629,7 +2629,6 @@ _edje_entry_select_all(Edje_Real_Part *rp) _curs_end(en->cursor, rp->object, en); _sel_extend(en->cursor, rp->object, en); - _edje_entry_imf_cursor_info_set(en); _edje_entry_real_part_configure(rp); } @@ -2650,8 +2649,6 @@ _edje_entry_select_begin(Edje_Real_Part *rp) _sel_start(en->cursor, rp->object, en); _sel_extend(en->cursor, rp->object, en); - _edje_entry_imf_cursor_info_set(en); - _edje_entry_real_part_configure(rp); } @@ -2667,8 +2664,6 @@ _edje_entry_select_extend(Edje_Real_Part *rp) _edje_entry_imf_context_reset(rp); _sel_extend(en->cursor, rp->object, en); - _edje_entry_imf_cursor_info_set(en); - _edje_entry_real_part_configure(rp); }