From 04e78eb355a2e1a8957c0d21f692660b7e263f13 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Mon, 13 Apr 2026 23:41:19 +0200 Subject: [PATCH] fix: remove scrollToItem that was overriding saved scroll position Co-Authored-By: Claude Opus 4.6 --- main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.py b/main.py index 0244873..0b1440e 100755 --- a/main.py +++ b/main.py @@ -1584,8 +1584,6 @@ class PlaylistWidget(QListWidget): else: tag = "" item.setText(f"▶ {tag}{os.path.basename(self._paths[row])}") - # If the item is off-screen, scroll just enough to show it. - self.scrollToItem(item, QListWidget.ScrollHint.EnsureVisible) self.file_selected.emit(self._paths[row]) def _refresh_item_text(self, row: int) -> None: