aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsaac Freund <mail@isaacfreund.com>2024-01-09 13:11:16 -0600
committerIsaac Freund <mail@isaacfreund.com>2024-01-09 13:11:16 -0600
commitcc1f988e56fd0fb5204fe954590fb2bee6a2af86 (patch)
tree7aae72008a3e5dadaefa4e20894fbfcd23f326ba
parentc38e7e2d879ef6508f7cb77aec8a52f90d832a3c (diff)
downloadriver-cc1f988e56fd0fb5204fe954590fb2bee6a2af86.tar.gz
river-cc1f988e56fd0fb5204fe954590fb2bee6a2af86.tar.xz
Root: fix stack order on restore from 0 outputs
-rw-r--r--river/Root.zig2
1 files changed, 1 insertions, 1 deletions
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);
}
{