From: Mike Blumenkrantz Date: Tue, 30 Jun 2015 20:03:51 +0000 (-0400) Subject: add special case for xwayland override clients in show event handler X-Git-Tag: upstream/0.20.0~676 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6de9c551de6458866aa7a1a0e330021d7d966c57;p=platform%2Fupstream%2Fenlightenment.git add special case for xwayland override clients in show event handler --- diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 8268d1b..329ed49 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1244,6 +1244,11 @@ _e_comp_x_show_helper(E_Client *ec) } else if (ec->override) { + if (e_comp->comp_type == E_PIXMAP_TYPE_WL) + { + ec->visible = 1; + return; + } ec->redirected = !ec->input_only; ec->changes.visible = ec->visible = 1; EC_CHANGED(ec);