From 3cfab0b4b5aa003bd4ae84bb32598009d312af89 Mon Sep 17 00:00:00 2001 From: Keith Simmons Date: Fri, 13 Mar 2020 17:26:05 -0700 Subject: [PATCH] remove windows binding as it doesn't help anything --- src/bridge/keybindings.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/bridge/keybindings.rs b/src/bridge/keybindings.rs index a4285eb..29c01d7 100644 --- a/src/bridge/keybindings.rs +++ b/src/bridge/keybindings.rs @@ -268,10 +268,6 @@ pub fn append_modifiers(modifiers: Mod, keycode_text: &str, special: bool) -> St special = true; result = format!("M-{}", result); } - if modifiers.contains(Mod::LGUIMOD) || modifiers.contains(Mod::RGUIMOD) { - special = true; - result = format!("D-{}", result); - } if special { result = format!("<{}>", result);