Merge pull request #672 from overte-org/fix/chat_bar_vr

Prevent the chat bar from popping up when VR headset is on
This commit is contained in:
ksuprynowicz 2023-11-05 16:36:10 +01:00 committed by GitHub
commit 720c0269e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -695,7 +695,7 @@ function keyPressEvent(event) {
if (event.key === H_KEY && !event.isAutoRepeat && event.isControl) {
toggleMainChatWindow()
}
if (event.key === ENTER_KEY && !event.isAutoRepeat && !visible) {
if (event.key === ENTER_KEY && !event.isAutoRepeat && !visible && !HMD.active) {
setVisible(true);
}
if (event.key === ESC_KEY && !event.isAutoRepeat && visible) {