diff options
author | Jihoon Kim <imfine98@gmail.com> | 2013-01-31 01:01:33 +0000 |
---|---|---|
committer | Jihoon Kim <imfine98@gmail.com> | 2013-01-31 01:01:33 +0000 |
commit | 916ef25fe8396d75431e9ac7572dd8c480f6da07 (patch) | |
tree | 37d854c803fcb84a9b701c803a1f6dbfdbc86cc5 | |
parent | ea30a66335dcafa7897f7f1cd540c2057ccfea1a (diff) | |
download | efl-916ef25fe8396d75431e9ac7572dd8c480f6da07.tar.gz efl-916ef25fe8396d75431e9ac7572dd8c480f6da07.tar.xz efl-916ef25fe8396d75431e9ac7572dd8c480f6da07.zip |
efl/edje entry : Remove ecore_imf_context_cursor_position_set in functions related to selection.
SVN revision: 83495
-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); } |