From 61a3f5c4c86bd10f43d21a9fd1e71777ea94132d Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Thu, 29 Feb 2024 18:37:10 +0100 Subject: [PATCH] shell: Even longer minimize duration --- src/shell/layout/floating/mod.rs | 2 +- src/shell/layout/tiling/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shell/layout/floating/mod.rs b/src/shell/layout/floating/mod.rs index 3b5bf58f..458f3b68 100644 --- a/src/shell/layout/floating/mod.rs +++ b/src/shell/layout/floating/mod.rs @@ -47,7 +47,7 @@ mod grabs; pub use self::grabs::*; pub const ANIMATION_DURATION: Duration = Duration::from_millis(200); -pub const MINIMIZE_ANIMATION_DURATION: Duration = Duration::from_millis(300); +pub const MINIMIZE_ANIMATION_DURATION: Duration = Duration::from_millis(400); #[derive(Debug, Default)] pub struct FloatingLayout { diff --git a/src/shell/layout/tiling/mod.rs b/src/shell/layout/tiling/mod.rs index ba797e90..656c3a9b 100644 --- a/src/shell/layout/tiling/mod.rs +++ b/src/shell/layout/tiling/mod.rs @@ -68,7 +68,7 @@ pub use self::blocker::*; pub use self::grabs::*; pub const ANIMATION_DURATION: Duration = Duration::from_millis(200); -pub const MINIMIZE_ANIMATION_DURATION: Duration = Duration::from_millis(300); +pub const MINIMIZE_ANIMATION_DURATION: Duration = Duration::from_millis(400); pub const MOUSE_ANIMATION_DELAY: Duration = Duration::from_millis(150); pub const INITIAL_MOUSE_ANIMATION_DELAY: Duration = Duration::from_millis(500);