devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=29c89083bd71e366a248f7e2d54de461b5cbf0d7
commit 29c89083bd71e366a248f7e2d54de461b5cbf0d7 Author: Chris Michael <cp.mich...@samsung.com> Date: Tue Oct 14 14:50:27 2014 -0400 add code to setup input & keyboard if we are using an X compositor Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/bin/e_comp_wl.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index ec43eee..f5aa571 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -179,6 +179,12 @@ _e_comp_wl_compositor_create(void) /* setup module idler to load shell mmodule */ ecore_idler_add(_e_comp_wl_cb_module_idle, cdata); + if (comp->comp_type == E_PIXMAP_TYPE_X) + { + e_comp_wl_input_pointer_enabled_set(cdata, EINA_TRUE); + e_comp_wl_input_keyboard_enabled_set(cdata, EINA_TRUE); + } + return EINA_TRUE; input_err: --