mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 21:12:25 +02:00
Fix edge case
This commit is contained in:
parent
1f16c5f987
commit
47627fd1de
2 changed files with 1 additions and 7 deletions
|
@ -517,11 +517,6 @@ Rectangle {
|
|||
takeSnapshotFromControllerCheckBox.visible = false;
|
||||
}
|
||||
break;
|
||||
case 'showPreviewTextureNotInstructions':
|
||||
console.log('showPreviewTextureNotInstructions recvd', JSON.stringify(message));
|
||||
spectatorCameraPreview.url = message.url;
|
||||
spectatorCameraPreview.visible = message.setting;
|
||||
break;
|
||||
case 'enable360SnapshotButton':
|
||||
take360SnapshotButton.text = "Take 360 Snapshot";
|
||||
take360SnapshotButton.enabled = cameraToggleButton.camIsOn;
|
||||
|
|
|
@ -242,7 +242,6 @@
|
|||
function setDisplay(showCameraView) {
|
||||
|
||||
var url = (camera) ? (showCameraView ? "resource://spectatorCameraFrame" : "resource://hmdPreviewFrame") : "";
|
||||
sendToQml({ method: 'showPreviewTextureNotInstructions', setting: !!url, url: url });
|
||||
|
||||
// FIXME: temporary hack to avoid setting the display texture to hmdPreviewFrame
|
||||
// until it is the correct mono.
|
||||
|
@ -255,11 +254,11 @@
|
|||
const MONITOR_SHOWS_CAMERA_VIEW_DEFAULT = false;
|
||||
var monitorShowsCameraView = !!Settings.getValue('spectatorCamera/monitorShowsCameraView', MONITOR_SHOWS_CAMERA_VIEW_DEFAULT);
|
||||
function setMonitorShowsCameraView(showCameraView) {
|
||||
setDisplay(showCameraView);
|
||||
if (showCameraView === monitorShowsCameraView) {
|
||||
return;
|
||||
}
|
||||
monitorShowsCameraView = showCameraView;
|
||||
setDisplay(showCameraView);
|
||||
Settings.setValue('spectatorCamera/monitorShowsCameraView', showCameraView);
|
||||
}
|
||||
function setMonitorShowsCameraViewAndSendToQml(showCameraView) {
|
||||
|
|
Loading…
Reference in a new issue