devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=bdd290591c081f2e8935a7579b46e052367c8446
commit bdd290591c081f2e8935a7579b46e052367c8446 Author: Chris Michael <cp.mich...@samsung.com> Date: Tue Oct 25 07:44:41 2016 -0400 reset elementary softcursor config on shutdown This is needed because if we shutdown E then try to run EFL apps in Weston, the Elm Softcursor mode would have been saved as 'off' so we should be sure to reset this. Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/bin/e_comp_wl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 8607427..cf3c76e 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -2903,6 +2903,8 @@ e_comp_wl_shutdown(void) /* free(global); */ /* } */ + elm_config_softcursor_mode_set(ELM_SOFTCURSOR_MODE_AUTO); + if (e_comp_wl->wl.shm) wl_shm_destroy(e_comp_wl->wl.shm); _e_comp_wl_gl_shutdown(); --