feat(core): wire up windows layout caching interval setting. Fix #745
This commit is contained in:
parent
0faa838932
commit
a00afd4874
|
@ -126,6 +126,8 @@ pub fn initialize_and_spawn(
|
||||||
),
|
),
|
||||||
hotkeys: match_converter.get_hotkeys(),
|
hotkeys: match_converter.get_hotkeys(),
|
||||||
win32_exclude_orphan_events: default_config.win32_exclude_orphan_events(),
|
win32_exclude_orphan_events: default_config.win32_exclude_orphan_events(),
|
||||||
|
win32_keyboard_layout_cache_interval: default_config
|
||||||
|
.win32_keyboard_layout_cache_interval(),
|
||||||
})
|
})
|
||||||
.expect("failed to initialize detector module");
|
.expect("failed to initialize detector module");
|
||||||
let exit_source = super::engine::funnel::exit::ExitSource::new(exit_signal, &sequencer);
|
let exit_source = super::engine::funnel::exit::ExitSource::new(exit_signal, &sequencer);
|
||||||
|
|
|
@ -49,5 +49,6 @@ generate_patchable_config!(
|
||||||
apply_patch -> bool,
|
apply_patch -> bool,
|
||||||
undo_backspace -> bool,
|
undo_backspace -> bool,
|
||||||
win32_exclude_orphan_events -> bool,
|
win32_exclude_orphan_events -> bool,
|
||||||
|
win32_keyboard_layout_cache_interval -> i64,
|
||||||
keyboard_layout -> Option<RMLVOConfig>
|
keyboard_layout -> Option<RMLVOConfig>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user