call e_manager_new with the proper root window so that keybindings on

the desktop work

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-02-04 12:33:04 -05:00
parent 931409c687
commit f69dcf9181
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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);