mirror of
https://github.com/glfw/glfw.git
synced 2024-11-11 13:03:52 +00:00
Wayland: Fix map before XDG decoration configure
If the xdg_toplevel has a decoration, we need to wait for its first
configure event as well before we are allowed to attach the first
buffer.
It seems racy to assume that this will always happen inside the first
surface configure sequence, so this commit makes that condition
explicit. This may turn out to have been overly defensive.
(cherry picked from commit 3203599cac
)
This commit is contained in:
parent
4c7f6ada0c
commit
8f9ddfe3c2
@ -611,10 +611,15 @@ static void xdgSurfaceHandleConfigure(void* userData,
|
||||
}
|
||||
|
||||
if (!window->wl.visible)
|
||||
{
|
||||
// Allow the window to be mapped only if it either has no XDG
|
||||
// decorations or they have already received a configure event
|
||||
if (!window->wl.xdg.decoration || window->wl.xdg.decorationMode)
|
||||
{
|
||||
window->wl.visible = GLFW_TRUE;
|
||||
_glfwInputWindowDamage(window);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static const struct xdg_surface_listener xdgSurfaceListener =
|
||||
|
Loading…
Reference in New Issue
Block a user