mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 19:16:56 +02:00
Fix blocks
This commit is contained in:
parent
878c6c68c8
commit
bb91c1c89b
1 changed files with 38 additions and 39 deletions
|
@ -326,7 +326,7 @@ Rectangle {
|
||||||
size: 16;
|
size: 16;
|
||||||
|
|
||||||
text: (bar.currentIndex === 0) ? qsTr("Press and hold the button \"T\" to talk.") :
|
text: (bar.currentIndex === 0) ? qsTr("Press and hold the button \"T\" to talk.") :
|
||||||
qsTr("Press and hold triggers on both of your controllers to talk.");
|
qsTr("Press and hold grip triggers on your controllers to talk.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -546,27 +546,26 @@ Rectangle {
|
||||||
color: hifi.colors.white;
|
color: hifi.colors.white;
|
||||||
text: qsTr("Choose input device");
|
text: qsTr("Choose input device");
|
||||||
}
|
}
|
||||||
}
|
AudioControls.LoopbackAudio {
|
||||||
|
id: loopbackAudio
|
||||||
|
x: margins.paddings
|
||||||
|
anchors.top: inputDeviceHeader.bottom;
|
||||||
|
anchors.topMargin: 10;
|
||||||
|
|
||||||
AudioControls.LoopbackAudio {
|
visible: (bar.currentIndex === 1 && isVR) ||
|
||||||
id: loopbackAudio
|
(bar.currentIndex === 0 && !isVR);
|
||||||
x: margins.paddings
|
anchors { left: parent.left; leftMargin: margins.paddings }
|
||||||
anchors.top: inputDeviceHeader.bottom;
|
}
|
||||||
anchors.topMargin: 10;
|
|
||||||
|
|
||||||
visible: (bar.currentIndex === 1 && isVR) ||
|
AudioControls.InputPeak {
|
||||||
(bar.currentIndex === 0 && !isVR);
|
id: inputLevel
|
||||||
anchors { left: parent.left; leftMargin: margins.paddings }
|
anchors.right: parent.right
|
||||||
}
|
peak: model.peak;
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
AudioControls.InputPeak {
|
visible: ((bar.currentIndex === 1 && isVR) ||
|
||||||
id: inputLevel
|
(bar.currentIndex === 0 && !isVR)) &&
|
||||||
anchors.right: parent.right
|
AudioScriptingInterface.devices.input.peakValuesAvailable;
|
||||||
peak: model.peak;
|
}
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
visible: ((bar.currentIndex === 1 && isVR) ||
|
|
||||||
(bar.currentIndex === 0 && !isVR)) &&
|
|
||||||
AudioScriptingInterface.devices.input.peakValuesAvailable;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ListView {
|
ListView {
|
||||||
|
@ -642,13 +641,13 @@ Rectangle {
|
||||||
color: hifi.colors.white;
|
color: hifi.colors.white;
|
||||||
text: qsTr("Choose output device");
|
text: qsTr("Choose output device");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
AudioControls.PlaySampleSound {
|
AudioControls.PlaySampleSound {
|
||||||
id: playSampleSound
|
id: playSampleSound
|
||||||
x: margins.paddings
|
x: margins.paddings
|
||||||
anchors.top: outputDeviceHeader.bottom;
|
anchors.top: outputDeviceHeader.bottom;
|
||||||
anchors.topMargin: 10;
|
anchors.topMargin: 10;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ListView {
|
ListView {
|
||||||
|
|
Loading…
Reference in a new issue