hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=0447a026cc9fcd8f5588ef323dac167f8015b134
commit 0447a026cc9fcd8f5588ef323dac167f8015b134 Author: Jaehyun Cho <[email protected]> Date: Thu Sep 11 15:19:30 2014 +0900 edc_editor: Fix T1602 to update syntax color after deleting a line Summary: Fix T1602 to update syntax color after deleting a line Reviewers: Hermet Reviewed By: Hermet Maniphest Tasks: T1602 Differential Revision: https://phab.enlightenment.org/D1431 --- src/bin/edc_editor.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/edc_editor.c b/src/bin/edc_editor.c index b97f26e..5a9cd13 100644 --- a/src/bin/edc_editor.c +++ b/src/bin/edc_editor.c @@ -721,6 +721,8 @@ edit_line_delete(edit_data *ed) cur_line_pos_set(ed, EINA_TRUE); edit_changed_set(ed, EINA_TRUE); + + syntax_color_partial_update(ed, SYNTAX_COLOR_DEFAULT_TIME); } int --
