Commit a07959c740ae6a8ddb50e918b901960ddbd9f7b3

Authored by Paulo Henrique Junqueira Amorim
1 parent 7838ec05

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,7 +305,7 @@ class Frame(wx.Frame):
305 elif id == const.ID_PROJECT_CLOSE: 305 elif id == const.ID_PROJECT_CLOSE:
306 self.CloseProject() 306 self.CloseProject()
307 elif id == const.ID_EXIT: 307 elif id == const.ID_EXIT:
308 - self.CloseProject() 308 + self.OnClose(None)
309 elif id == const.ID_ABOUT: 309 elif id == const.ID_ABOUT:
310 self.ShowAbout() 310 self.ShowAbout()
311 elif id == const.ID_START: 311 elif id == const.ID_START: