it captures newline char also in some scenario
Scenario: 1.Have an item image in entry
2.Make cursor after the item
3.Hit enter
4.Long press to select the item image
5.Observe
@tizen_fix
Change-Id: I10a574c266d04ed1db09065c62644c3c81966eda
EDJE_CURSOR_MAIN, pos);
edje_object_part_text_select_begin(sd->entry_edje, "elm.text");
evas_textblock_cursor_word_end(cur);
- evas_textblock_cursor_char_next(cur);
+ if (!evas_textblock_cursor_eol_get(cur))
+ {
+ evas_textblock_cursor_char_next(cur);
+ }
pos = evas_textblock_cursor_pos_get(cur);
edje_object_part_text_cursor_pos_set(sd->entry_edje, "elm.text",
EDJE_CURSOR_MAIN, pos);