Wayland: Cleanup

(cherry picked from commit 88a39006e3)
This commit is contained in:
Camilla Löwy 2022-06-21 23:19:40 +02:00
parent 20d11f7f97
commit 5937eec914

View File

@ -647,9 +647,7 @@ static GLFWbool createShellObjects(_GLFWwindow* window)
return GLFW_FALSE;
}
xdg_surface_add_listener(window->wl.xdg.surface,
&xdgSurfaceListener,
window);
xdg_surface_add_listener(window->wl.xdg.surface, &xdgSurfaceListener, window);
window->wl.xdg.toplevel = xdg_surface_get_toplevel(window->wl.xdg.surface);
if (!window->wl.xdg.toplevel)
@ -659,17 +657,14 @@ static GLFWbool createShellObjects(_GLFWwindow* window)
return GLFW_FALSE;
}
xdg_toplevel_add_listener(window->wl.xdg.toplevel,
&xdgToplevelListener,
window);
xdg_toplevel_add_listener(window->wl.xdg.toplevel, &xdgToplevelListener, window);
if (window->wl.title)
xdg_toplevel_set_title(window->wl.xdg.toplevel, window->wl.title);
if (window->monitor)
{
xdg_toplevel_set_fullscreen(window->wl.xdg.toplevel,
window->monitor->wl.output);
xdg_toplevel_set_fullscreen(window->wl.xdg.toplevel, window->monitor->wl.output);
setIdleInhibitor(window, GLFW_TRUE);
}
else