mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 11:17:32 +02:00
make audio screen inputs/outputs unflickable
This commit is contained in:
parent
f3708ba27b
commit
9349514ff7
1 changed files with 3 additions and 1 deletions
|
@ -365,6 +365,7 @@ Rectangle {
|
||||||
anchors.top: inputDeviceHeader.bottom;
|
anchors.top: inputDeviceHeader.bottom;
|
||||||
anchors.topMargin: 10;
|
anchors.topMargin: 10;
|
||||||
x: margins.paddings
|
x: margins.paddings
|
||||||
|
interactive: false;
|
||||||
height: contentHeight;
|
height: contentHeight;
|
||||||
spacing: 4;
|
spacing: 4;
|
||||||
clip: true;
|
clip: true;
|
||||||
|
@ -456,7 +457,8 @@ Rectangle {
|
||||||
ListView {
|
ListView {
|
||||||
id: outputView
|
id: outputView
|
||||||
width: parent.width - margins.paddings*2
|
width: parent.width - margins.paddings*2
|
||||||
x: margins.paddings
|
x: margins.paddings;
|
||||||
|
interactive: false;
|
||||||
height: contentHeight;
|
height: contentHeight;
|
||||||
anchors.top: outputDeviceHeader.bottom;
|
anchors.top: outputDeviceHeader.bottom;
|
||||||
anchors.topMargin: 10;
|
anchors.topMargin: 10;
|
||||||
|
|
Loading…
Reference in a new issue