mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 11:02:24 +02:00
Fix inputView if statement
This commit is contained in:
parent
3aefa6ad9c
commit
878c6c68c8
1 changed files with 1 additions and 1 deletions
|
@ -572,7 +572,7 @@ Rectangle {
|
|||
ListView {
|
||||
id: inputView;
|
||||
width: rightMostInputLevelPos;
|
||||
anchors.top: (loopbackAudio.visible === 1) ? loopbackAudio.bottom : inputDeviceHeader.bottom;
|
||||
anchors.top: loopbackAudio.visible ? loopbackAudio.bottom : inputDeviceHeader.bottom;
|
||||
anchors.topMargin: 10;
|
||||
x: margins.paddings
|
||||
interactive: false;
|
||||
|
|
Loading…
Reference in a new issue