From f93fea2a22b1612326f5c61697cbab33b2eb1281 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Mon, 6 Apr 2026 12:55:58 +0200 Subject: [PATCH] fix: clear stale DB warning, allow playlist panel to resize --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 63e1b8a..78a505e 100644 --- a/main.py +++ b/main.py @@ -259,7 +259,7 @@ class PlaylistWidget(QListWidget): super().__init__() self.setAcceptDrops(True) self.setDragDropMode(QAbstractItemView.DragDropMode.DropOnly) - self.setFixedWidth(200) + self.setMinimumWidth(200) self.setWordWrap(True) self._paths: list[str] = [] self.itemClicked.connect(self._on_item_clicked) @@ -454,6 +454,8 @@ class MainWindow(QMainWindow): match = self._db.find_similar(os.path.basename(self._file_path)) if match: self.statusBar().showMessage(f"⚠ Similar to already processed: {match}") + else: + self.statusBar().clearMessage() # --- Playback ---