View: remove faulty assertion

This assertion does not consider that a view may be visible on an output
despite no view on that output having focus due to a differnt output
currently having focus.

I don't see any clean way to fix the assert, so just remove it.
This commit is contained in:
Isaac Freund 2024-03-09 13:47:36 +01:00
parent 4a65af667e
commit ac655593f3
No known key found for this signature in database
GPG Key ID: 86DED400DDFD7A11

View File

@ -573,10 +573,6 @@ pub fn attachRelative(view: *Self, output_pending: *Output.PendingState, mode: A
// 2. There are no views visible given the currently focused tags. In this case it
// doesn't matter where in the wm_stack the new view is inserted as it will be the only
// view visible.
//
// Assert that exactly one of these cases is true
assert((focus_stack_head.pending.tags & output_pending.tags != 0) !=
(focus_stack_head.pending.focus == 0));
var it = output_pending.wm_stack.iterator(.forward);
while (it.next()) |other| {