discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=3f5d25a53544823f8231293108c81463b1b583be
commit 3f5d25a53544823f8231293108c81463b1b583be Author: Mike Blumenkrantz <[email protected]> Date: Thu Mar 12 13:13:55 2015 -0400 don't identify all wl shell clients as internal...you crackhead --- src/modules/wl_desktop_shell/e_mod_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c index 2a56e98..70af995 100644 --- a/src/modules/wl_desktop_shell/e_mod_main.c +++ b/src/modules/wl_desktop_shell/e_mod_main.c @@ -563,7 +563,7 @@ _e_shell_cb_shell_surface_get(struct wl_client *client, struct wl_resource *reso ec = e_pixmap_client_get(ep); if (ec) e_pixmap_ref(ec->pixmap); - if (!(ec = e_client_new(NULL, ep, 0, 1))) + if (!(ec = e_client_new(NULL, ep, 0, 0))) { wl_resource_post_error(surface_resource, WL_DISPLAY_ERROR_INVALID_OBJECT, @@ -1137,7 +1137,7 @@ _e_xdg_shell_cb_surface_get(struct wl_client *client, struct wl_resource *resour ec = e_pixmap_client_get(ep); if (ec) e_pixmap_ref(ec->pixmap); - if (!(ec = e_client_new(NULL, ep, 0, 1))) + if (!(ec = e_client_new(NULL, ep, 0, 0))) { wl_resource_post_error(surface_resource, WL_DISPLAY_ERROR_INVALID_OBJECT, @@ -1233,7 +1233,7 @@ _e_xdg_shell_cb_popup_get(struct wl_client *client, struct wl_resource *resource ec = e_pixmap_client_get(ep); if (ec) e_pixmap_ref(ec->pixmap); - if (!(ec = e_client_new(NULL, ep, 0, 1))) + if (!(ec = e_client_new(NULL, ep, 0, 0))) { wl_resource_post_error(surface_resource, WL_DISPLAY_ERROR_INVALID_OBJECT, --
