From d1ebcf62c8dddb31ade2a1e0510354680614b9eb Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Sun, 10 Oct 2021 19:27:44 +0200 Subject: [PATCH] fix(core): change Thunderbird parameters to account for edge cases described in #351 --- espanso/src/patch/patches/linux/thunderbird_x11.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/espanso/src/patch/patches/linux/thunderbird_x11.rs b/espanso/src/patch/patches/linux/thunderbird_x11.rs index df0df04..eeb366a 100644 --- a/espanso/src/patch/patches/linux/thunderbird_x11.rs +++ b/espanso/src/patch/patches/linux/thunderbird_x11.rs @@ -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() }, ))