fix(core): add missing patch field

This commit is contained in:
Federico Terzi 2021-08-09 22:53:53 +02:00
parent 47eb2b0b69
commit 52b73ba031

View File

@ -17,7 +17,7 @@
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
*/
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<usize>,
word_separators -> Vec<String>,
backspace_limit -> usize,
apply_patch -> bool
apply_patch -> bool,
keyboard_layout -> Option<RMLVOConfig>
);