Commit a07959c740ae6a8ddb50e918b901960ddbd9f7b3
1 parent
7838ec05
Exists in
master
and in
6 other branches
FIX: Close InVesalius with File -> Close
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/frame.py
... | ... | @@ -305,7 +305,7 @@ class Frame(wx.Frame): |
305 | 305 | elif id == const.ID_PROJECT_CLOSE: |
306 | 306 | self.CloseProject() |
307 | 307 | elif id == const.ID_EXIT: |
308 | - self.CloseProject() | |
308 | + self.OnClose(None) | |
309 | 309 | elif id == const.ID_ABOUT: |
310 | 310 | self.ShowAbout() |
311 | 311 | elif id == const.ID_START: | ... | ... |