1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Fix window size calculation when wp_viewporter isn’t supported

This commit is contained in:
Emmanuel Gil Peyrot 2017-12-22 18:56:06 +01:00 committed by linkmauve
parent 60e82ba472
commit c9d691e65e

View File

@ -58,7 +58,7 @@ static void handleConfigure(void* data,
if (!window->monitor)
{
if (window->decorated)
if (_glfw.wl.viewporter && window->decorated)
{
width -= _GLFW_DECORATION_HORIZONTAL;
height -= _GLFW_DECORATION_VERTICAL;
@ -308,7 +308,7 @@ static void resizeWindow(_GLFWwindow* window)
_glfwInputFramebufferSize(window, scaledWidth, scaledHeight);
_glfwInputWindowContentScale(window, scale, scale);
if (!_glfw.wl.viewporter || !window->wl.decorations.top.surface)
if (!window->wl.decorations.top.surface)
return;
// Top decoration.