We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb949b8 commit 6f40ed6Copy full SHA for 6f40ed6
tagstudio/src/qt/widgets/item_thumb.py
@@ -218,6 +218,9 @@ def __init__(
218
219
self.thumb_button.setContextMenuPolicy(Qt.ContextMenuPolicy.ActionsContextMenu)
220
self.opener = FileOpenerHelper("")
221
+ self.thumb_button.clicked.connect(
222
+ lambda: self.opener.open_file() if self.thumb_button.selected else None
223
+ )
224
open_file_action = QAction("Open file", self)
225
open_file_action.triggered.connect(self.opener.open_file)
226
open_explorer_action = QAction("Open file in explorer", self)
0 commit comments