From 60927a6a8a8e5a97b11453956c6eb41300916737 Mon Sep 17 00:00:00 2001 From: Kai Folf Date: Wed, 31 Jul 2024 15:03:14 +0700 Subject: [PATCH] fix: sound not playing --- contents/ui/main.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contents/ui/main.qml b/contents/ui/main.qml index 29da920..91eb42a 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -49,6 +49,11 @@ PlasmoidItem { MediaPlayer { id: mediaplayer source: "../sounds/" + soundIndex + ".wav" + // On first .play() call, applet freezes so this is a temporary fix I guess + autoPlay: true + audioOutput: AudioOutput { + muted: true + } } MouseArea { anchors.fill: parent @@ -59,6 +64,7 @@ PlasmoidItem { // Play sound soundIndex = (soundIndex + 1) % 8 + mediaplayer.audioOutput.muted = false mediaplayer.play() } }