From 693da50a6849bf03d9c196835f6c6bd67d5de911 Mon Sep 17 00:00:00 2001 From: Menithal Date: Mon, 27 Nov 2017 07:59:04 +0200 Subject: [PATCH] 21539: Fixed None Checkmark being on Desktop mode --- interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml b/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml index 075b4637b2..0978f23013 100644 --- a/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml +++ b/interface/resources/qml/hifi/tablet/OpenVrConfiguration.qml @@ -803,6 +803,11 @@ Rectangle { anchors.leftMargin: leftMargin + 10 onClicked: { + if (!checked & hmdInDesktop.checked) { + headBox.checked = true; + headPuckBox.checked = false; + hmdInDesktop.checked = false; + } sendConfigurationSettings(); } }