From 4ab71a3cc7f9da7915919903a63fe58523b07c26 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 11 Apr 2020 11:17:25 -0700 Subject: [PATCH] Allow Command key to function as Control --- Limelight/Input/KeyboardSupport.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Limelight/Input/KeyboardSupport.m b/Limelight/Input/KeyboardSupport.m index 5624d2f..c1e7225 100644 --- a/Limelight/Input/KeyboardSupport.m +++ b/Limelight/Input/KeyboardSupport.m @@ -21,7 +21,7 @@ if (key.modifierFlags & UIKeyModifierAlternate) { modifierFlags |= MODIFIER_ALT; } - if (key.modifierFlags & UIKeyModifierControl) { + if (key.modifierFlags & (UIKeyModifierControl | UIKeyModifierCommand)) { modifierFlags |= MODIFIER_CTRL; }