Fix iteration in handleFrame
This commit is contained in:
parent
424a16fe94
commit
8d68d1e7cf
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ pub const Output = struct {
|
||||||
|
|
||||||
// The first view in the list is "on top" so iterate in reverse.
|
// The first view in the list is "on top" so iterate in reverse.
|
||||||
var it = ViewStack.reverseIterator(
|
var it = ViewStack.reverseIterator(
|
||||||
output.root.views.first,
|
output.root.views.last,
|
||||||
output.root.current_focused_tags,
|
output.root.current_focused_tags,
|
||||||
);
|
);
|
||||||
while (it.next()) |view| {
|
while (it.next()) |view| {
|
||||||
|
|
Loading…
Reference in a new issue