From b3ae3adbb77c4111366cb59b80d757f361c70237 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 27 Sep 2025 11:20:43 +0300 Subject: Partially implement config includes Subsequent commits will add merging for all leftover sections. --- src/layout/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/layout/mod.rs') diff --git a/src/layout/mod.rs b/src/layout/mod.rs index c04a72ba..e60828d9 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -576,7 +576,7 @@ impl HitType { impl Options { fn from_config(config: &Config) -> Self { Self { - layout: config.resolve_layout(), + layout: config.layout.clone(), animations: config.animations.clone(), gestures: config.gestures, overview: config.overview, -- cgit