fix: sound not playing

This commit is contained in:
Kai Folf 2024-07-31 15:03:14 +07:00
parent ca11c3327c
commit 60927a6a8a
Signed by: folfcoder
SSH key fingerprint: SHA256:Nwn09jQSW0yjKdDkM042MUSWzLnwGQaWUwtlCg8CHbs

View file

@ -49,6 +49,11 @@ PlasmoidItem {
MediaPlayer { MediaPlayer {
id: mediaplayer id: mediaplayer
source: "../sounds/" + soundIndex + ".wav" 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 { MouseArea {
anchors.fill: parent anchors.fill: parent
@ -59,6 +64,7 @@ PlasmoidItem {
// Play sound // Play sound
soundIndex = (soundIndex + 1) % 8 soundIndex = (soundIndex + 1) % 8
mediaplayer.audioOutput.muted = false
mediaplayer.play() mediaplayer.play()
} }
} }