mirror of
https://github.com/glfw/glfw.git
synced 2025-04-06 14:05:07 +00:00
Wayland: Do not decorate fullscreen windows
If a fullscreen window with GLFW_DECORATED set had its XDG decorations
changed to client mode by the compositor, it would seemingly receive
GLFW fallback decorations as if it was windowed mode.
This is possibly related to #2001.
(cherry picked from commit da6713cd09
)
This commit is contained in:
parent
e541b7969a
commit
0cd8813e82
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ static void xdgDecorationHandleConfigure(void* userData,
|
|||
|
||||
if (mode == ZXDG_TOPLEVEL_DECORATION_V1_MODE_CLIENT_SIDE)
|
||||
{
|
||||
if (window->decorated)
|
||||
if (window->decorated && !window->monitor)
|
||||
createFallbackDecorations(window);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue