diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-04-04 16:47:46 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-04-04 16:51:14 +0200 |
| commit | 8d68d1e7cf8782fe337e6f605d394a1df8b5d36d (patch) | |
| tree | 1391e08f558f82ce07b4e4e603597fbcae323558 | |
| parent | 424a16fe94b01b322aa61a8f07a97c1a98431638 (diff) | |
| download | river-8d68d1e7cf8782fe337e6f605d394a1df8b5d36d.tar.gz river-8d68d1e7cf8782fe337e6f605d394a1df8b5d36d.tar.xz | |
Fix iteration in handleFrame
| -rw-r--r-- | src/output.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output.zig b/src/output.zig index 936ee51..0ab7c9d 100644 --- a/src/output.zig +++ b/src/output.zig @@ -82,7 +82,7 @@ pub const Output = struct { // The first view in the list is "on top" so iterate in reverse. var it = ViewStack.reverseIterator( - output.root.views.first, + output.root.views.last, output.root.current_focused_tags, ); while (it.next()) |view| { |
