Wayland: Move window title cloning to creation

master
Camilla Löwy ago%!(EXTRA string=3 years)
parent 7bede13b1d
commit c1ecd4673e
  1. 4
      src/wl_window.c

@ -638,6 +638,7 @@ static GLFWbool createSurface(_GLFWwindow* window,
window->wl.width = wndconfig->width;
window->wl.height = wndconfig->height;
window->wl.scale = 1;
window->wl.title = _glfw_strdup(wndconfig->title);
window->wl.transparent = fbconfig->transparent;
if (!window->wl.transparent)
@ -805,9 +806,6 @@ int _glfwCreateWindowWayland(_GLFWwindow* window,
}
}
if (wndconfig->title)
window->wl.title = _glfw_strdup(wndconfig->title);
window->wl.currentCursor = NULL;
window->wl.monitors = _glfw_calloc(1, sizeof(_GLFWmonitor*));

Loading…
Cancel
Save