mirror of
https://github.com/folfcoder/plasma-sharkle.git
synced 2025-04-05 05:31:36 +00:00
fix: sound not playing
This commit is contained in:
parent
ca11c3327c
commit
60927a6a8a
1 changed files with 6 additions and 0 deletions
|
@ -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()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue