We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9accc0 commit 0d57e5cCopy full SHA for 0d57e5c
1 file changed
annotation_tool/controllers/localization/localization_manager.py
@@ -7,7 +7,6 @@
7
8
from utils import natural_sort_key
9
from models import CmdType
10
-# Assuming ProjectTreeModel is accessible via main_window or imports if needed for type hinting
11
12
class LocalizationManager:
13
"""
@@ -37,8 +36,7 @@ def setup_connections(self):
37
36
pc.saveRequested.connect(self._on_save_clicked)
38
pc.exportRequested.connect(self._on_export_clicked)
39
40
- # [MV Fix] Tree Interactions
41
- # QTreeView does not have currentItemChanged. We must use the selection model.
+ # Tree Interactions
42
self.left_panel.tree.selectionModel().currentChanged.connect(self.on_clip_selected)
43
44
# Right Click Context Menu
0 commit comments