From cb3e8d42a79438de521b4163ccf4b123479f0430 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Tue, 23 May 2023 19:21:25 +0200 Subject: [PATCH] shell: Fix animation getting stuck --- src/shell/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/mod.rs b/src/shell/mod.rs index e19fba27..961e01bf 100644 --- a/src/shell/mod.rs +++ b/src/shell/mod.rs @@ -1073,7 +1073,7 @@ impl Shell { WorkspaceMode::OutputBound(sets, _) => { sets.values().any(|set| set.previously_active.is_some()) } - }) || matches!(self.overview_mode, OverviewMode::None) + }) || !matches!(self.overview_mode, OverviewMode::None) || self .workspaces .spaces()