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 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 18:14:31 +01:00
parent 30911e894a
commit 7c2acd326f

View File

@@ -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: