From 52b73ba031ee1bfe27f4602b79ddb23bbfd90890 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Mon, 9 Aug 2021 22:53:53 +0200 Subject: [PATCH] fix(core): add missing patch field --- espanso/src/patch/patches/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/espanso/src/patch/patches/mod.rs b/espanso/src/patch/patches/mod.rs index be86a0e..10131fc 100644 --- a/espanso/src/patch/patches/mod.rs +++ b/espanso/src/patch/patches/mod.rs @@ -17,7 +17,7 @@ * along with espanso. If not, see . */ -use espanso_config::config::{Backend, ToggleKey}; +use espanso_config::config::{Backend, RMLVOConfig, ToggleKey}; #[cfg(target_os = "windows")] pub mod win; @@ -44,5 +44,6 @@ generate_patchable_config!( key_delay -> Option, word_separators -> Vec, backspace_limit -> usize, - apply_patch -> bool + apply_patch -> bool, + keyboard_layout -> Option );