diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/lib/edje/edje_entry.c | 5 |
3 files changed, 5 insertions, 5 deletions
@@ -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 @@ -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 43e3c2f5f..70ef36ce8 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); } |