Commit c24165dca8885a56b282ce2d61568859a0f21359
1 parent
a0edc42e
Exists in
master
and in
3 other branches
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,7 +227,7 @@ class Frame(wx.Frame): | ||
227 | Exit InVesalius. | 227 | Exit InVesalius. |
228 | """ | 228 | """ |
229 | self.Destroy() | 229 | self.Destroy() |
230 | - sys.exit(0) | 230 | + #sys.exit(0) |
231 | 231 | ||
232 | def _HideContentPanel(self, pubsub_evt): | 232 | def _HideContentPanel(self, pubsub_evt): |
233 | """ | 233 | """ |