Skip to content

Commit 7edfbd4

Browse files
committed
fix: video incorretly unpauses when timer ends
#189
1 parent 76d7373 commit 7edfbd4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package/contents/ui/FadePlayer.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Item {
8080

8181
Timer {
8282
id: changeTimer
83-
running: root.changeWallpaperMode === Enum.ChangeWallpaperMode.OnATimer
83+
running: root.changeWallpaperMode === Enum.ChangeWallpaperMode.OnATimer && root.player.playing
8484
interval: !running ? 0 : changeWallpaperTimerTime - (root.crossfadeEnabled ? root.crossfadeMinDurationCurrent : 0)
8585
repeat: true
8686
onTriggered: {

0 commit comments

Comments
 (0)