From 8fc0f28b2f15726b6f0bd8298d9c036996d2fa35 Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 12 Aug 2023 20:27:07 -0400 Subject: [PATCH] Fixed play next song action. --- pysollib/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/actions.py b/pysollib/actions.py index e720c5a0..31881d2f 100644 --- a/pysollib/actions.py +++ b/pysollib/actions.py @@ -888,7 +888,7 @@ class PysolMenubar(PysolMenubarTk): def mPlayNextMusic(self, *args): if self._cancelDrag(break_pause=False): return - if (self.app.audio and self.app.music and + if (self.app.audio and self.app.opt.music and self.app.opt.sound_music_volume > 0): self.app.audio.playNextMusic() if 1 and DEBUG: