summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorBartlomiej Moskal <bartlomiej.moskal@qt.io>2022-10-24 12:32:04 +0200
committerBartlomiej Moskal <bartlomiej.moskal@qt.io>2022-10-26 07:27:11 +0000
commitf14b25c9a3c9df370c8af3c88726a19a3cc617ca (patch)
tree3233cc27383ae47c4e1969a0f38ad8de937b0d3f /examples
parent8bac732a97d1b5add2370eeeddf15ab07714843c (diff)
Example: Not working mute for AudioInput in recorder
The change of switch (next to audio Input source) should affect the example. Mute is now connected to the audioSwitch value. Pick-to: 6.4 6.2 Fixes: QTBUG-107885 Change-Id: I7dd3495916f30dd713ebc7e9c8ae3ccbe734fd49 Reviewed-by: Piotr Srebrny <piotr.srebrny@qt.io> Reviewed-by: Samuel Mira <samuel.mira@qt.io> Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/multimedia/video/recorder/AudioInputSelect.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/multimedia/video/recorder/AudioInputSelect.qml b/examples/multimedia/video/recorder/AudioInputSelect.qml
index eea5b2854..9e2e0ed98 100644
--- a/examples/multimedia/video/recorder/AudioInputSelect.qml
+++ b/examples/multimedia/video/recorder/AudioInputSelect.qml
@@ -13,7 +13,7 @@ Row {
MediaDevices { id: mediaDevices }
- AudioInput { id: audioInput; muted: false }
+ AudioInput { id: audioInput; muted: !audioSwitch.checked }
Switch {
id: audioSwitch;