From c5dd913b9854a1d11fc61deac2fdfcc4931ab86a Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Thu, 18 Jan 2024 22:59:02 +0000 Subject: [PATCH] Resize rows on show/hide played --- app/musicmuster.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/musicmuster.py b/app/musicmuster.py index 9748d4d..e3804c3 100755 --- a/app/musicmuster.py +++ b/app/musicmuster.py @@ -786,6 +786,8 @@ class Window(QMainWindow, Ui_MainWindow): self.hide_played_tracks = True self.active_proxy_model().hide_played_tracks(True) self.btnHidePlayed.setText("Show played") + # Reset row heights + self.active_tab.resizeRowsToContents() def import_track(self) -> None: """Import track file"""