edc_editor: focus lose on left-arrow key is pressed

Summary:
Call elm_object_focus_allow_set() function for en_line entry to
forbid focusing it, so en_editor would not lose its focus.

Reviewers: Hermet

Differential Revision: https://phab.enlightenment.org/D1246
This commit is contained in:
Kateryna Fesyna 2014-07-29 16:33:22 +09:00 committed by ChunEon Park
parent 9505d24711
commit 46b5582e4f
1 changed files with 1 additions and 0 deletions

View File

@ -953,6 +953,7 @@ edit_init(Evas_Object *parent)
evas_object_color_set(en_line, 101, 101, 101, 255);
elm_entry_editable_set(en_line, EINA_FALSE);
elm_entry_line_wrap_set(en_line, ELM_WRAP_NONE);
elm_object_focus_allow_set(en_line, EINA_FALSE);
evas_object_size_hint_weight_set(en_line, 0, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(en_line, 0, EVAS_HINT_FILL);
elm_object_part_content_set(layout, "elm.swallow.linenumber", en_line);