Skip to content

Commit

Permalink
add self.quit() to close protocol
Browse files Browse the repository at this point in the history
fixes application still running bug
  • Loading branch information
earnestt1234 committed Jun 23, 2020
1 parent 80fc03a commit ad765d6
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 1 deletion.
Binary file modified FED3_Viz/__pycache__/_version.cpython-37.pyc
Binary file not shown.
3 changes: 2 additions & 1 deletion FED3_Viz/fed3viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -2367,8 +2367,9 @@ def on_close(self):
self.save_settings(dialog=False,savepath=last_used)
#save current session
if os.path.isdir('sessions'):
self.save_session(dialog=False)
self.save_session(dialog=False)
self.destroy()
self.quit()

#---ERROR MESSAGES
def raise_average_warning(self):
Expand Down
Binary file modified FED3_Viz/fed_inspect/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file modified FED3_Viz/fed_inspect/__pycache__/fed_inspect.cpython-37.pyc
Binary file not shown.
Binary file modified FED3_Viz/getdata/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file modified FED3_Viz/getdata/__pycache__/getdata.cpython-37.pyc
Binary file not shown.
Binary file modified FED3_Viz/load/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file modified FED3_Viz/load/__pycache__/load.cpython-37.pyc
Binary file not shown.
Binary file modified FED3_Viz/plots/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file modified FED3_Viz/plots/__pycache__/plots.cpython-37.pyc
Binary file not shown.

0 comments on commit ad765d6

Please sign in to comment.