discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=ec601e49d13178120574d1832e7ce6a243aad641
commit ec601e49d13178120574d1832e7ce6a243aad641 Author: Mike Blumenkrantz <[email protected]> Date: Fri Feb 24 14:15:42 2017 -0500 register wl_buffer output canvas for input events --- src/modules/wl_buffer/e_mod_main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/wl_buffer/e_mod_main.c b/src/modules/wl_buffer/e_mod_main.c index 2666393..1c98b62 100644 --- a/src/modules/wl_buffer/e_mod_main.c +++ b/src/modules/wl_buffer/e_mod_main.c @@ -28,6 +28,9 @@ e_modapi_init(E_Module *m) EINA_SAFETY_ON_TRUE_RETURN_VAL(!e_comp_wl_init(), NULL); EINA_SAFETY_ON_TRUE_RETURN_VAL(!e_comp_canvas_init(1024, 768), NULL); + ecore_event_evas_init(); + ecore_evas_input_event_register(e_comp->ee); + e_comp_wl_input_pointer_enabled_set(EINA_TRUE); e_comp_wl_input_keyboard_enabled_set(EINA_TRUE); e_comp_wl_input_touch_enabled_set(EINA_TRUE); --
