Wayland: Simplify test for fallback decorations

The GLFW fallback decorations only exist when the window is visible,
decorated and in windowed mode.
This commit is contained in:
Camilla Löwy 2022-12-28 23:35:06 +01:00
parent 19b09f668e
commit 5a92ab35e1

View File

@ -2006,7 +2006,7 @@ void _glfwGetWindowFrameSizeWayland(_GLFWwindow* window,
int* left, int* top,
int* right, int* bottom)
{
if (window->decorated && !window->monitor && window->wl.decorations.top.surface)
if (window->wl.decorations.top.surface)
{
if (top)
*top = GLFW_CAPTION_HEIGHT;