From cb2017e9539383f83575feec74a022790ae25488 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sun, 9 Jul 2023 16:20:10 +0100 Subject: [PATCH] Add button icons; wire up Stop button --- app/musicmuster.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/musicmuster.py b/app/musicmuster.py index 4b59e78..b9fbf1e 100755 --- a/app/musicmuster.py +++ b/app/musicmuster.py @@ -59,6 +59,7 @@ from dbconfig import ( scoped_session, ) import helpers +import icons_rc import music from models import Base, Carts, Playdates, PlaylistRows, Playlists, Settings, Tracks from config import Config @@ -661,6 +662,7 @@ class Window(QMainWindow, Ui_MainWindow): self.btnFade.clicked.connect(self.fade) self.btnHidePlayed.clicked.connect(self.hide_played) self.btnPreview.clicked.connect(self.preview) + self.btnStop.clicked.connect(self.stop) self.hdrCurrentTrack.clicked.connect(self.show_current) self.hdrNextTrack.clicked.connect(self.show_next) self.tabPlaylist.currentChanged.connect(self.tab_change)