shell: Unset resizing state properly

This commit is contained in:
Victoria Brekenfeld 2024-03-06 16:29:04 +01:00
parent a204197e6d
commit 01c69cb7ea

View file

@ -2928,6 +2928,7 @@ impl Shell {
let mut resize_state = mapped.resize_state.lock().unwrap();
if let Some(ResizeState::Resizing(data)) = *resize_state {
mapped.set_resizing(false);
*resize_state = Some(ResizeState::WaitingForCommit(data));
}
}