Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kingofpayne committed Jul 26, 2024
1 parent b370935 commit 11e923e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion laserstudio/widgets/toolbars/markerstoolbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, viewer: Viewer):
w.setIcon(QIcon(colored_image(":/icons/location-pin-plus.svg")))
w.setIconSize(QSize(24, 24))
w.setToolTip("Add markers")
w.clicked.connect(viewer.add_marker)
w.clicked.connect(lambda: viewer.add_marker())
self.addWidget(w)

# Clear all markers
Expand Down

0 comments on commit 11e923e

Please sign in to comment.