mirror of
https://github.com/overte-org/overte.git
synced 2025-04-11 18:12:34 +02:00
21539: Updated Logic to match request
This commit is contained in:
parent
ba1cd74ffe
commit
5d52b9936b
2 changed files with 1 additions and 3 deletions
|
@ -158,7 +158,6 @@ Rectangle {
|
|||
}
|
||||
|
||||
RalewayBold {
|
||||
id: hmdInDesktopLabel
|
||||
size: 12
|
||||
visible: viveInDesktop.checked
|
||||
text: "None"
|
||||
|
|
|
@ -168,7 +168,6 @@ void ViveControllerManager::setConfigurationSettings(const QJsonObject configura
|
|||
}
|
||||
|
||||
if (configurationSettings.contains("hmdDesktopTracking")) {
|
||||
|
||||
_hmdDesktopTracking = configurationSettings["hmdDesktopTracking"].toBool();
|
||||
}
|
||||
|
||||
|
@ -458,7 +457,7 @@ void ViveControllerManager::InputDevice::configureCalibrationSettings(const QJso
|
|||
iter++;
|
||||
}
|
||||
|
||||
_hmdTrackingEnabled = !(hmdDesktopMode && !hmdDesktopTracking);
|
||||
_hmdTrackingEnabled = !(hmdDesktopMode && hmdDesktopTracking);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue