mirror of
https://github.com/lubosz/overte.git
synced 2025-04-17 00:57:44 +02:00
Update Audio.qml
"Noise Reduction: Manual/Automatic" -> "Manual Noise Reduction"
This commit is contained in:
parent
799590a0fc
commit
88b9ebb11a
1 changed files with 5 additions and 5 deletions
|
@ -580,14 +580,14 @@ Rectangle {
|
|||
anchors.top: noiseReductionSwitch.bottom;
|
||||
anchors.topMargin: 24;
|
||||
anchors.left: parent.left;
|
||||
labelTextOn: "Noise Reduction: Manual/Automatic";
|
||||
labelTextOn: "Manual Noise Reduction";
|
||||
labelTextSize: 16;
|
||||
backgroundOnColor: "#E3E3E3";
|
||||
checked: AudioScriptingInterface.noiseReductionAutomatic;
|
||||
checked: !AudioScriptingInterface.noiseReductionAutomatic;
|
||||
visible: AudioScriptingInterface.noiseReduction === true;
|
||||
onCheckedChanged: {
|
||||
AudioScriptingInterface.noiseReductionAutomatic = checked;
|
||||
checked = Qt.binding(function() { return AudioScriptingInterface.noiseReductionAutomatic; }); // restore binding
|
||||
AudioScriptingInterface.noiseReductionAutomatic = !checked;
|
||||
checked = Qt.binding(function() { return !AudioScriptingInterface.noiseReductionAutomatic; }); // restore binding
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -663,7 +663,7 @@ Rectangle {
|
|||
|
||||
width: noiseReductionThresholdSlider.width - 10;
|
||||
height: 8;
|
||||
|
||||
|
||||
Text {
|
||||
id: status;
|
||||
|
||||
|
|
Loading…
Reference in a new issue