mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 05:43:36 +02:00
Merge pull request #11743 from kencooke/audio-peakmeters-bugfix
Fix the audio input device peak meters
This commit is contained in:
commit
c1dfa24c12
1 changed files with 2 additions and 2 deletions
|
@ -213,8 +213,8 @@ Rectangle {
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
peak: model.peak;
|
peak: model.peak;
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
visible: (bar.currentIndex === 1 && selectedHMD && isVR) ||
|
visible: ((bar.currentIndex === 1 && isVR) ||
|
||||||
(bar.currentIndex === 0 && selectedDesktop && !isVR) &&
|
(bar.currentIndex === 0 && !isVR)) &&
|
||||||
Audio.devices.input.peakValuesAvailable;
|
Audio.devices.input.peakValuesAvailable;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue