Skip to content

Commit 25c7baa

Browse files
authored
Fixed breaking bug for action buttons (#1334)
1 parent 60f966e commit 25c7baa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

activity_browser/actions/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def get_QButton(cls, *args, **kwargs):
3535
cls.icon,
3636
cls.text
3737
)
38-
button.clicked.connect(lambda x: cls.run(*args, **kwargs))
38+
button.clicked.connect(lambda x: cls.triggered(*args, **kwargs))
3939
return button
4040

4141

0 commit comments

Comments
 (0)