mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 08:45:16 +02:00
Try to remove empty space when "Test your voice" button is not visible
This commit is contained in:
parent
845cc4454c
commit
0c8cc0a806
1 changed files with 1 additions and 1 deletions
|
@ -572,7 +572,7 @@ Rectangle {
|
||||||
ListView {
|
ListView {
|
||||||
id: inputView;
|
id: inputView;
|
||||||
width: rightMostInputLevelPos;
|
width: rightMostInputLevelPos;
|
||||||
anchors.top: loopbackAudio.bottom;
|
anchors.top: (loopbackAudio.visible === 1) ? loopbackAudio.bottom : inputDeviceHeader.bottom;
|
||||||
anchors.topMargin: 10;
|
anchors.topMargin: 10;
|
||||||
x: margins.paddings
|
x: margins.paddings
|
||||||
interactive: false;
|
interactive: false;
|
||||||
|
|
Loading…
Reference in a new issue