devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=f69dcf918166a914ee05d16e1a5926f9143ba9d4
commit f69dcf918166a914ee05d16e1a5926f9143ba9d4 Author: Chris Michael <[email protected]> Date: Wed Feb 4 12:33:04 2015 -0500 call e_manager_new with the proper root window so that keybindings on the desktop work Signed-off-by: Chris Michael <[email protected]> --- src/modules/wl_drm/e_mod_main.c | 2 +- src/modules/wl_fb/e_mod_main.c | 2 +- src/modules/wl_x11/e_mod_main.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/wl_drm/e_mod_main.c b/src/modules/wl_drm/e_mod_main.c index 795c415..fbaa615 100644 --- a/src/modules/wl_drm/e_mod_main.c +++ b/src/modules/wl_drm/e_mod_main.c @@ -112,7 +112,7 @@ e_modapi_init(E_Module *m) e_xinerama_screens_set(eina_list_append(NULL, screen)); } - comp->man = e_manager_new(0, comp, w, h); + comp->man = e_manager_new(ecore_evas_window_get(comp->ee), comp, w, h); if (!e_comp_canvas_init(comp)) return NULL; e_comp_canvas_fake_layers_init(comp); diff --git a/src/modules/wl_fb/e_mod_main.c b/src/modules/wl_fb/e_mod_main.c index 1dbe347..1e78173 100644 --- a/src/modules/wl_fb/e_mod_main.c +++ b/src/modules/wl_fb/e_mod_main.c @@ -42,7 +42,7 @@ e_modapi_init(E_Module *m) screen->h = h; e_xinerama_screens_set(eina_list_append(NULL, screen)); } - comp->man = e_manager_new(0, comp, w, h); + comp->man = e_manager_new(ecore_evas_window_get(comp->ee), comp, w, h); e_comp_wl_init(); e_comp_canvas_init(comp); e_comp_canvas_fake_layers_init(comp); diff --git a/src/modules/wl_x11/e_mod_main.c b/src/modules/wl_x11/e_mod_main.c index 7c64eac..40c66df 100644 --- a/src/modules/wl_x11/e_mod_main.c +++ b/src/modules/wl_x11/e_mod_main.c @@ -102,7 +102,7 @@ e_modapi_init(E_Module *m) e_xinerama_screens_set(eina_list_append(NULL, screen)); } - comp->man = e_manager_new(0, comp, w, h); + comp->man = e_manager_new(ecore_evas_window_get(comp->ee), comp, w, h); if (!e_comp_canvas_init(comp)) return NULL; e_comp_canvas_fake_layers_init(comp); --
