From 0a7b64d7be20bf547d2f74c73e339e8c01faf4c3 Mon Sep 17 00:00:00 2001 From: Armored Dragon Date: Thu, 23 May 2024 01:50:38 -0500 Subject: [PATCH] Prevent VR quick_message bar. Signed-off-by: Armored Dragon --- scripts/communityScripts/armored-chat/armored_chat.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/communityScripts/armored-chat/armored_chat.js b/scripts/communityScripts/armored-chat/armored_chat.js index 49c4ba0790..2e45610aeb 100644 --- a/scripts/communityScripts/armored-chat/armored_chat.js +++ b/scripts/communityScripts/armored-chat/armored_chat.js @@ -179,6 +179,8 @@ function keyPressEvent(event) { switch (JSON.stringify(event.key)) { case "16777220": // Enter key + if (HMD.active) return; // Don't allow in VR + quick_message.sendToQml({ type: "change_visibility", value: true,