devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=8a760180255872fabb7cf9dd9b4276c4ef672ecd
commit 8a760180255872fabb7cf9dd9b4276c4ef672ecd Author: Chris Michael <cp.mich...@samsung.com> Date: Fri Feb 27 10:59:59 2015 -0500 remove missed use of E_COMP_WL_PIXMAP_CHECK macro Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/bin/e_comp_wl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 66caff2..993fa92 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -562,7 +562,9 @@ _e_comp_wl_evas_cb_state_update(void *data, Evas_Object *obj EINA_UNUSED, void * if (e_object_is_del(E_OBJECT(ec))) return; - E_COMP_WL_PIXMAP_CHECK; + /* check for wayland pixmap */ + if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return; + if (ec->comp_data->shell.configure_send) ec->comp_data->shell.configure_send(ec->comp_data->shell.surface, 0, 0, 0); } --