discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=4140fb728a2b04054ed27d271d5bc19a9a7e7413
commit 4140fb728a2b04054ed27d271d5bc19a9a7e7413 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Tue Mar 10 16:37:30 2015 -0400 don't attempt to find wl shell E_Client when one cannot exist --- src/modules/wl_desktop_shell/e_mod_main.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c index 15ae58a..ee29db0 100644 --- a/src/modules/wl_desktop_shell/e_mod_main.c +++ b/src/modules/wl_desktop_shell/e_mod_main.c @@ -34,8 +34,7 @@ _e_shell_surface_parent_set(E_Client *ec, struct wl_resource *parent_resource) pwin = e_pixmap_window_get(pp); /* find the parent client */ - if (!(pc = e_pixmap_client_get(pp))) - pc = e_pixmap_find_client(E_PIXMAP_TYPE_WL, pwin); + pc = e_pixmap_client_get(pp); e_pixmap_parent_window_set(ec->pixmap, pwin); @@ -561,8 +560,7 @@ _e_shell_cb_shell_surface_get(struct wl_client *client, struct wl_resource *reso if (e_pixmap_type_get(ep) != E_PIXMAP_TYPE_WL) return; /* find the client for this pixmap */ - if (!(ec = e_pixmap_client_get(ep))) - ec = e_pixmap_find_client(E_PIXMAP_TYPE_WL, e_pixmap_window_get(ep)); + ec = e_pixmap_client_get(ep); if (!ec) { @@ -1140,8 +1138,7 @@ _e_xdg_shell_cb_surface_get(struct wl_client *client, struct wl_resource *resour if (e_pixmap_type_get(ep) != E_PIXMAP_TYPE_WL) return; /* find the client for this pixmap */ - if (!(ec = e_pixmap_client_get(ep))) - ec = e_pixmap_find_client(E_PIXMAP_TYPE_WL, e_pixmap_window_get(ep)); + ec = e_pixmap_client_get(ep); if (!ec) { @@ -1240,8 +1237,7 @@ _e_xdg_shell_cb_popup_get(struct wl_client *client, struct wl_resource *resource if (e_pixmap_type_get(ep) != E_PIXMAP_TYPE_WL) return; /* find the client for this pixmap */ - if (!(ec = e_pixmap_client_get(ep))) - ec = e_pixmap_find_client(E_PIXMAP_TYPE_WL, e_pixmap_window_get(ep)); + ec = e_pixmap_client_get(ep); if (!ec) { --