From cd4b4a8d04394d6377842bd421d143a296d49c37 Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Sat, 8 Mar 2014 13:30:50 +0900 Subject: [PATCH] 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); }