Skip to content

Commit

Permalink
Merge pull request #26 from calebweinreb/esc_removed_scatter_hotfix
Browse files Browse the repository at this point in the history
Prevent scatter from disappearing when ESC is pressed
  • Loading branch information
calebweinreb authored Feb 1, 2024
2 parents 72878e4 + 6700bed commit e3cea58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snub/gui/panels/scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(
self.variable_menu.itemClicked.connect(self.variable_menu_item_clicked)
self.show_variable_menu()

self.canvas = SceneCanvas(self, keys="interactive", show=True)
self.canvas = SceneCanvas(self, show=True)
self.canvas.events.mouse_move.connect(self.mouse_move)
self.canvas.events.mouse_release.connect(self.mouse_release)
self.viewbox = self.canvas.central_widget.add_grid().add_view(
Expand Down

0 comments on commit e3cea58

Please sign in to comment.