ajwillia-ms pushed a commit to branch master. http://git.enlightenment.org/tools/edi.git/commit/?id=ddfaa2798e43b4f6ec616e8f07f4704fee73989e
commit ddfaa2798e43b4f6ec616e8f07f4704fee73989e Author: Kelly Wilson <wils...@cpsc.ucalgary.ca> Date: Mon Feb 2 13:30:56 2015 -0700 Comment fix Fix a small mixup with a comment for horizontal scrolling --- src/bin/editor/edi_editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/editor/edi_editor.c b/src/bin/editor/edi_editor.c index 825e16b..8c3a12f 100644 --- a/src/bin/editor/edi_editor.c +++ b/src/bin/editor/edi_editor.c @@ -249,7 +249,7 @@ _scroll_cb(void *data, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSE elm_scroller_region_get(editor->lines, NULL, NULL, NULL, &h); elm_scroller_region_show(editor->lines, 0, y, 10, h); - // Don't update highlighting on y scroll, only h + // Don't update highlighting on h scroll, only y if (_edi_global_y != y) { _update_highlight(editor); --