tiling: Don't crash when swapping with group
This commit is contained in:
parent
b9a323c9ff
commit
c42a2ac279
1 changed files with 2 additions and 2 deletions
|
|
@ -5184,7 +5184,7 @@ where
|
|||
.stack_ref()
|
||||
.map(|stack| &stack.active() != stack_window)
|
||||
.unwrap_or(false),
|
||||
_ => unreachable!(),
|
||||
_ => false,
|
||||
})
|
||||
.unwrap_or(false)
|
||||
})
|
||||
|
|
@ -5269,7 +5269,7 @@ where
|
|||
.stack_ref()
|
||||
.map(|stack| &stack.active() == stack_window)
|
||||
.unwrap_or(false),
|
||||
_ => unreachable!(), // TODO: We could swap with a group
|
||||
_ => false,
|
||||
})
|
||||
.unwrap_or(false)
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue