make e_client_has_xwindow() more wayland-only friendly

This commit is contained in:
Mike Blumenkrantz 2016-04-08 11:51:18 -04:00
parent dea3ae21ad
commit 4cc66119c5
1 changed files with 4 additions and 3 deletions

View File

@ -5001,12 +5001,13 @@ e_client_has_xwindow(const E_Client *ec)
#ifdef HAVE_WAYLAND_ONLY
(void)ec;
return EINA_FALSE;
#endif
#ifdef HAVE_WAYLAND
#else
# ifdef HAVE_WAYLAND
if (!e_pixmap_is_x(ec->pixmap))
return !!e_comp_wl_client_xwayland_pixmap(ec);
#endif
# endif
return e_pixmap_is_x(ec->pixmap);
#endif
}
////////////////////////////////////////////