From 86d4a7932d43d00c33d17bba420041d38fb24ab9 Mon Sep 17 00:00:00 2001 From: Squibid Date: Mon, 22 Dec 2025 20:15:32 -0500 Subject: [PATCH] remove waiting_room, we never really used it --- src/Root.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Root.zig b/src/Root.zig index 54e55ca..6383a0e 100644 --- a/src/Root.zig +++ b/src/Root.zig @@ -21,7 +21,6 @@ xdg_toplevel_decoration_manager: *wlr.XdgDecorationManagerV1, scene: *wlr.Scene, scene_node_data: SceneNodeData, -waiting_room: *wlr.SceneTree, scene_output_layout: *wlr.SceneOutputLayout, output_layout: *wlr.OutputLayout, @@ -40,7 +39,6 @@ pub fn init(self: *Root) void { self.* = .{ .scene = scene, .scene_node_data = .{ .root = self }, - .waiting_room = try scene.tree.createSceneTree(), .output_layout = output_layout, .xdg_toplevel_decoration_manager = try wlr.XdgDecorationManagerV1.create(server.wl_server), .scene_output_layout = try scene.attachOutputLayout(output_layout),