hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=5fe34acc35dec4e334b911b22950fdced74ea020
commit 5fe34acc35dec4e334b911b22950fdced74ea020 Author: ChunEon Park <[email protected]> Date: Mon Jun 2 13:07:29 2014 +0900 enventor - disable auto scroll mode. auto scroll is not proper for the traditional editor users who may be familiar with it. --- src/bin/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/main.c b/src/bin/main.c index 01634cc..e32bda3 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -477,6 +477,7 @@ elm_setup() if (engine && !strncmp(engine, "gl", strlen("gl"))) elm_config_preferred_engine_set("opengl_x11"); + elm_config_focus_autoscroll_mode_set(ELM_FOCUS_AUTOSCROLL_MODE_NONE); elm_config_scroll_bounce_enabled_set(EINA_FALSE); elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED); elm_app_compile_bin_dir_set(PACKAGE_BIN_DIR); --
