Move "Test your voice" and "Test your sound" to top of their category

This commit is contained in:
motofckr9k 2020-06-19 21:10:48 +02:00
parent 8284dd16cf
commit ee6de9e868

View file

@ -547,10 +547,21 @@ Rectangle {
}
}
AudioControls.LoopbackAudio {
id: loopbackAudio
x: margins.paddings
anchors.top: inputDeviceHeader.bottom;
anchors.topMargin: 10;
visible: (bar.currentIndex === 1 && isVR) ||
(bar.currentIndex === 0 && !isVR);
anchors { left: parent.left; leftMargin: margins.paddings }
}
ListView {
id: inputView;
width: rightMostInputLevelPos;
anchors.top: inputDeviceHeader.bottom;
anchors.top: loopbackAudio.bottom;
anchors.topMargin: 10;
x: margins.paddings
interactive: false;
@ -596,17 +607,6 @@ Rectangle {
}
}
AudioControls.LoopbackAudio {
id: loopbackAudio
x: margins.paddings
anchors.top: inputView.bottom;
anchors.topMargin: 10;
visible: (bar.currentIndex === 1 && isVR) ||
(bar.currentIndex === 0 && !isVR);
anchors { left: parent.left; leftMargin: margins.paddings }
}
Separator {
id: thirdSeparator;
anchors.top: loopbackAudio.visible ? loopbackAudio.bottom : inputView.bottom;
@ -642,13 +642,20 @@ Rectangle {
}
}
AudioControls.PlaySampleSound {
id: playSampleSound
x: margins.paddings
anchors.top: outputDeviceHeader.bottom;
anchors.topMargin: 10;
}
ListView {
id: outputView
width: parent.width - margins.paddings*2
x: margins.paddings;
interactive: false;
height: contentHeight;
anchors.top: outputDeviceHeader.bottom;
anchors.top: playSampleSound.bottom;
anchors.topMargin: 10;
clip: true;
model: AudioScriptingInterface.devices.output;
@ -677,17 +684,10 @@ Rectangle {
}
}
AudioControls.PlaySampleSound {
id: playSampleSound
x: margins.paddings
anchors.top: outputView.bottom;
anchors.topMargin: 10;
}
// Spacer item
Item {
anchors.top: playSampleSound.bottom;
anchors.topMargin: 5;
anchors.top: outputView.bottom;
anchors.topMargin: 10;
}
}