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/ui/hotkey_overlay.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ui') diff --git a/src/ui/hotkey_overlay.rs b/src/ui/hotkey_overlay.rs index 783b71ef..67997fc8 100644 --- a/src/ui/hotkey_overlay.rs +++ b/src/ui/hotkey_overlay.rs @@ -607,7 +607,7 @@ mod tests { #[track_caller] fn check(config: &str, action: Action) -> String { - let config = Config::parse("test.kdl", config).unwrap(); + let config = Config::parse_mem(config).unwrap(); if let Some((key, title)) = format_bind(&config.binds.0, &action) { let key = key.map(|key| key_name(false, ModKey::Super, &key)); let key = key.as_deref().unwrap_or("(not bound)"); -- cgit