fix(core): change Thunderbird parameters to account for edge cases described in #351

This commit is contained in:
Federico Terzi 2021-10-10 19:27:44 +02:00
parent 7b7489a8d8
commit d1ebcf62c8

View File

@ -19,6 +19,8 @@
use std::sync::Arc;
use espanso_config::config::Backend;
use crate::patch::patches::{PatchedConfig, Patches};
use crate::patch::PatchDefinition;
@ -33,6 +35,9 @@ pub fn patch() -> PatchDefinition {
name,
Patches {
paste_shortcut: Some(Some("CTRL+SHIFT+V".to_string())),
backend: Some(Backend::Clipboard),
key_delay: Some(Some(15)),
inject_delay: Some(Some(15)),
..Default::default()
},
))