hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=2b40f3d578f2a4bdd28ce97e43591eddcc3fd5bc
commit 2b40f3d578f2a4bdd28ce97e43591eddcc3fd5bc Author: ChunEon Park <her...@hermet.pe.kr> Date: Sat May 31 16:20:01 2014 +0900 syntax_color: adjust updation time while scroller size is beging changed. --- src/bin/edc_editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/edc_editor.c b/src/bin/edc_editor.c index c56d2bc..3ee15ce 100644 --- a/src/bin/edc_editor.c +++ b/src/bin/edc_editor.c @@ -863,7 +863,7 @@ scroller_resize_cb(void *data, Evas *e, Evas_Object *obj, void *event_info) evas_object_geometry_get(obj, NULL, NULL, NULL, &h); if (h == ed->scroller_h) return; - syntax_color_partial_update(ed, SYNTAX_COLOR_SHORT_TIME); + syntax_color_partial_update(ed, SYNTAX_COLOR_DEFAULT_TIME); ed->scroller_h = h; } --