From 10601c131633f0984b0523dcf27216a0259756b0 Mon Sep 17 00:00:00 2001 From: Chris Pressland Date: Thu, 8 Feb 2024 15:03:13 +0000 Subject: [PATCH] Fix kb combo for BT Remote / Push to Talk / Teams / macOS --- applications/system/hid_app/views/hid_ptt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/system/hid_app/views/hid_ptt.c b/applications/system/hid_app/views/hid_ptt.c index 1d71490a2..3b7031a36 100644 --- a/applications/system/hid_app/views/hid_ptt.c +++ b/applications/system/hid_app/views/hid_ptt.c @@ -276,7 +276,7 @@ static void hid_ptt_stop_ptt_linux_teamspeak(HidPushToTalk* hid_ptt) { // teams static void hid_ptt_start_ptt_macos_teams(HidPushToTalk* hid_ptt) { - hid_hal_keyboard_press(hid_ptt->hid, KEY_MOD_LEFT_GUI | HID_KEYBOARD_SPACEBAR); + hid_hal_keyboard_press(hid_ptt->hid, KEY_MOD_LEFT_ALT | HID_KEYBOARD_SPACEBAR); } static void hid_ptt_start_ptt_linux_teams(HidPushToTalk* hid_ptt) { hid_hal_keyboard_press(hid_ptt->hid, KEY_MOD_LEFT_CTRL | HID_KEYBOARD_SPACEBAR);