hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=cd4b4a8d04394d6377842bd421d143a296d49c37
commit cd4b4a8d04394d6377842bd421d143a296d49c37 Author: ChunEon Park <her...@hermet.pe.kr> Date: Sat Mar 8 13:30:50 2014 +0900 editor - +fixme comment for future. --- src/bin/edc_editor.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/edc_editor.c b/src/bin/edc_editor.c index 5248153..66ca1fe 100644 --- a/src/bin/edc_editor.c +++ b/src/bin/edc_editor.c @@ -144,6 +144,9 @@ edit_changed_cb(void *data, Evas_Object *obj EINA_UNUSED, void *event_info) } if (!syntax_color) return; + /* FIXME: after searching the text, it couldn't recover the selected text + right after applying syntax color. This workaround makes avoid to not + applying syntax color while entry has the selected text. */ if (elm_entry_selection_get(ed->en_edit)) return; syntax_color_timer_update(ed); } --