ecore-wl2: Support window raise function for wl_shell_surface

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-09-24 11:58:42 -04:00
parent cfce071a34
commit ffe14478de
1 changed files with 3 additions and 1 deletions

View File

@ -428,5 +428,7 @@ ecore_wl2_window_raise(Ecore_Wl2_Window *window)
{
EINA_SAFETY_ON_NULL_RETURN(window);
/* FIXME: set keyboard focus when input is complete */
/* FIXME: This should raise xdg surface also...perhaps using xdg activate */
if (window->wl_shell_surface)
wl_shell_surface_set_toplevel(window->wl_shell_surface);
}