Wayland: Remove duplicate fullscreen check

This check is already performed in shared code.

(cherry picked from commit c28d420060)
This commit is contained in:
Camilla Löwy 2022-06-13 15:12:52 +02:00
parent 8de0c1cdc1
commit e04a7d152a

View File

@ -2160,15 +2160,12 @@ void _glfwPlatformSetWindowResizable(_GLFWwindow* window, GLFWbool enabled)
} }
void _glfwPlatformSetWindowDecorated(_GLFWwindow* window, GLFWbool enabled) void _glfwPlatformSetWindowDecorated(_GLFWwindow* window, GLFWbool enabled)
{
if (!window->monitor)
{ {
if (enabled) if (enabled)
createDecorations(window); createDecorations(window);
else else
destroyDecorations(window); destroyDecorations(window);
} }
}
void _glfwPlatformSetWindowFloating(_GLFWwindow* window, GLFWbool enabled) void _glfwPlatformSetWindowFloating(_GLFWwindow* window, GLFWbool enabled)
{ {