add special case for xwayland override clients in show event handler

This commit is contained in:
Mike Blumenkrantz 2015-06-30 16:03:51 -04:00
parent 7583b5ae5c
commit 6de9c551de
1 changed files with 5 additions and 0 deletions

View File

@ -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);