discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=8541c13b06de558d2ff835766b4c2fab8b632fc5
commit 8541c13b06de558d2ff835766b4c2fab8b632fc5 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Tue Feb 10 15:51:16 2015 -0500 unset new_client flag for wayland clients this is only applicable for X clients --- src/modules/wl_desktop_shell/e_mod_main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c index a8579c2..c18ebd8 100644 --- a/src/modules/wl_desktop_shell/e_mod_main.c +++ b/src/modules/wl_desktop_shell/e_mod_main.c @@ -580,6 +580,7 @@ _e_shell_cb_shell_surface_get(struct wl_client *client, struct wl_resource *reso } ec->netwm.ping = EINA_TRUE; + ec->new_client = 0; } /* get the client data */ @@ -1198,6 +1199,7 @@ _e_xdg_shell_cb_surface_get(struct wl_client *client, struct wl_resource *resour cdata->shell.unmap = _e_xdg_shell_surface_unmap; /* set toplevel client properties */ + ec->new_client = 0; ec->argb = EINA_TRUE; ec->no_shape_cut = EINA_TRUE; ec->borderless = !ec->internal_elm_win; @@ -1307,6 +1309,7 @@ _e_xdg_shell_cb_popup_get(struct wl_client *client, struct wl_resource *resource cdata->shell.unmap = _e_xdg_shell_surface_unmap; ec->override = 1; + ec->new_client = 0; ec->argb = EINA_TRUE; ec->no_shape_cut = EINA_TRUE; ec->borderless = !ec->internal_elm_win; --