Commit c24165dca8885a56b282ce2d61568859a0f21359

Authored by Thiago Franco de Moraes
1 parent a0edc42e

It's not necessary to sys.exit in onclose

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
invesalius/gui/frame.py
... ... @@ -227,7 +227,7 @@ class Frame(wx.Frame):
227 227 Exit InVesalius.
228 228 """
229 229 self.Destroy()
230   - sys.exit(0)
  230 + #sys.exit(0)
231 231  
232 232 def _HideContentPanel(self, pubsub_evt):
233 233 """
... ...