From 5286df954dc2352ccd6bab25f31db3ae8bc4aa7c Mon Sep 17 00:00:00 2001 From: Rasmus Michelsen Date: Wed, 15 Apr 2020 00:09:13 +0200 Subject: [PATCH] Reverted keybind changes for this branch --- src/bridge/layouts/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bridge/layouts/mod.rs b/src/bridge/layouts/mod.rs index e53e9d0..d1907b8 100644 --- a/src/bridge/layouts/mod.rs +++ b/src/bridge/layouts/mod.rs @@ -70,14 +70,14 @@ fn append_modifiers( special = true; result = format!("S-{}", result); } - if ctrl && !alt { + if ctrl { special = true; result = format!("C-{}", result); } - if alt && !ctrl { + if alt { special = true; result = format!("M-{}", result); - } + } if cfg!(not(target_os = "windows")) && gui { special = true; result = format!("D-{}", result);