From 6de9c551de6458866aa7a1a0e330021d7d966c57 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 30 Jun 2015 16:03:51 -0400 Subject: [PATCH] add special case for xwayland override clients in show event handler --- src/bin/e_comp_x.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 8268d1b6a..329ed49bf 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);