From 7cfe6257772061606068d68bb571ac470e10dce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Vald=C3=A9s?= Date: Tue, 4 Feb 2020 01:23:58 +0100 Subject: [PATCH] Improved hack. By ignoring the shift modifier, it works even better --- src/window.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window.rs b/src/window.rs index 4d2dba0..eaaca33 100644 --- a/src/window.rs +++ b/src/window.rs @@ -121,6 +121,7 @@ pub fn ui_loop() { .. } => { if allow_next_char { + next_char_modifiers.remove(ModifiersState::SHIFT); let keybinding = super::bridge::append_modifiers(next_char_modifiers, &c.to_string(), false); BRIDGE.queue_command(UiCommand::Keyboard(keybinding)); }