mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
screen: Don't map the COW on Wayland
This is unnecessary, and since we don't shape it, we get a giant input window covering the rest of our windows.
This commit is contained in:
parent
2aa6dcd9d8
commit
0ac2f61a2c
@ -678,7 +678,10 @@ meta_screen_new (MetaDisplay *display,
|
||||
screen->starting_corner = META_SCREEN_TOPLEFT;
|
||||
screen->guard_window = None;
|
||||
|
||||
screen->composite_overlay_window = XCompositeGetOverlayWindow (xdisplay, xroot);
|
||||
/* If we're a Wayland compositor, then we don't grab the COW, since it
|
||||
* will map it. */
|
||||
if (!meta_is_wayland_compositor ())
|
||||
screen->composite_overlay_window = XCompositeGetOverlayWindow (xdisplay, xroot);
|
||||
|
||||
/* Now that we've gotten taken a reference count on the COW, we
|
||||
* can close the helper that is holding on to it */
|
||||
|
Loading…
Reference in New Issue
Block a user