From cc1f988e56fd0fb5204fe954590fb2bee6a2af86 Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Tue, 9 Jan 2024 13:11:16 -0600 Subject: Root: fix stack order on restore from 0 outputs --- river/Root.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/river/Root.zig b/river/Root.zig index ef2bb65..5c3238d 100644 --- a/river/Root.zig +++ b/river/Root.zig @@ -379,7 +379,7 @@ pub fn activateOutput(root: *Self, output: *Output) void { output.pending.tags = root.fallback.tags; { - var it = root.fallback.pending.focus_stack.safeIterator(.reverse); + var it = root.fallback.pending.wm_stack.safeIterator(.reverse); while (it.next()) |view| view.setPendingOutput(output); } { -- cgit v1.2.3