From 1fa9dd32ed028c88248644a13421c098fef72894 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 20 Sep 2025 12:57:41 +0300 Subject: config: Split Layout from LayoutPart --- src/tests/animations.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tests') diff --git a/src/tests/animations.rs b/src/tests/animations.rs index 508fd6d0..4871f2c0 100644 --- a/src/tests/animations.rs +++ b/src/tests/animations.rs @@ -74,7 +74,7 @@ fn set_up() -> Fixture { }); let mut config = Config::default(); - config.layout.gaps = FloatOrInt(0.0); + config.layout.gaps = Some(FloatOrInt(0.0)); config.animations.window_resize.anim.kind = LINEAR; config.animations.window_movement.0.kind = LINEAR; -- cgit