From a3fe8e23f1c038bd835e9078c6efb46d31de36c2 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 12 Jan 2021 18:44:32 -0600 Subject: [PATCH] Enable some restricted key combos to pass through to the PC --- 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 c1e7225..6dbb97c 100644 --- a/Limelight/Input/KeyboardSupport.m +++ b/Limelight/Input/KeyboardSupport.m @@ -215,7 +215,7 @@ } } - LiSendKeyboardEvent(keyCode, + LiSendKeyboardEvent(0x8000 | keyCode, down ? KEY_ACTION_DOWN : KEY_ACTION_UP, modifierFlags); return true;