From 01c69cb7eae006d305a3aaf2c43d700c206dc0b7 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Wed, 6 Mar 2024 16:29:04 +0100 Subject: [PATCH] shell: Unset resizing state properly --- src/shell/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shell/mod.rs b/src/shell/mod.rs index 3c75811f..d1f1471c 100644 --- a/src/shell/mod.rs +++ b/src/shell/mod.rs @@ -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)); } }