Skip to content

Commit

Permalink
Fixed exiting procedure
Browse files Browse the repository at this point in the history
  • Loading branch information
vigoux committed Jun 19, 2018
1 parent d47843e commit d55f798
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def initMenu(self):
filemenu.add_command(label="Save current config",
command=self.saveConfig)
filemenu.add_separator()
filemenu.add_command(label="Quit", command=self.quit)
filemenu.add_command(label="Quit", command=self.goodbye_app)
menubar.add_cascade(label="File", menu=filemenu) # Add it to menubar

menubar.add_command(label="Preferences...",
Expand Down Expand Up @@ -789,7 +789,7 @@ def goodbye_app(self):
self.stop_live_display.set()
self.experiment_on = True
self.avh._done()
self.destroy()
self.quit()


def report_callback_exception(self, *args):
Expand Down

0 comments on commit d55f798

Please sign in to comment.