efl/edje entry : Remove ecore_imf_context_cursor_position_set in functions related to selection.

SVN revision: 83495
This commit is contained in:
Jihoon Kim 2013-01-31 01:01:33 +00:00
parent ea30a66335
commit 916ef25fe8
3 changed files with 5 additions and 5 deletions

View File

@ -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

1
NEWS
View File

@ -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.

View File

@ -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);
}