Wayland: Cleanup

This commit is contained in:
Camilla Löwy 2022-06-21 23:19:40 +02:00
parent 5c948a6e6e
commit 88a39006e3
1 changed files with 3 additions and 8 deletions

View File

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