From 7c2acd326f4ebeb3024d5c0b068593968152469e Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Thu, 26 Feb 2026 18:14:31 +0100 Subject: [PATCH] Fix file list not updating when folder type changes _set_folder_type was missing a _refresh_files() call, so changing a folder between TRANSITION and MAIN didn't rebuild the file list until a manual reorder. Co-Authored-By: Claude Opus 4.6 --- ui/main_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/main_window.py b/ui/main_window.py index 0deba9b..b8b4385 100644 --- a/ui/main_window.py +++ b/ui/main_window.py @@ -4429,6 +4429,7 @@ class SequenceLinkerUI(QWidget): self._folder_type_overrides[fid] = folder_type self._sync_dual_lists() + self._refresh_files() self._update_flow_arrows() def _update_folder_type_indicators(self, _=None) -> None: