From 52776fcf8ddee09caa1f0d439c43d9caf95f22e8 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Wed, 26 Oct 2022 14:20:34 +0100 Subject: [PATCH] Workaround to crash when playing cart with next track selected --- app/musicmuster.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/musicmuster.py b/app/musicmuster.py index 588ef6e..aac5f2f 100755 --- a/app/musicmuster.py +++ b/app/musicmuster.py @@ -195,9 +195,9 @@ class Window(QMainWindow, Ui_MainWindow): btn.player.play() btn.is_playing = True colour = Config.COLOUR_CART_PLAYING - thread = threading.Thread(target=self.cart_progressbar, - args=(btn,)) - thread.start() + # thread = threading.Thread(target=self.cart_progressbar, + # args=(btn,)) + # thread.start() else: colour = Config.COLOUR_CART_ERROR btn.setStyleSheet("background-color: " + colour + ";\n")