From cb15af651cb411b1def676b4c3ff97c88a61ce5b Mon Sep 17 00:00:00 2001 From: tfmoraes Date: Tue, 5 Jan 2010 16:34:07 +0000 Subject: [PATCH] FIX: #51. Setted 1500 to timeout in splashscreen, if setted to 1, a segmentation fault occurs in linux --- invesalius/invesalius.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invesalius/invesalius.py b/invesalius/invesalius.py index f4d35a8..15ed9e4 100755 --- a/invesalius/invesalius.py +++ b/invesalius/invesalius.py @@ -44,7 +44,7 @@ class SplashScreen(wx.SplashScreen): bmp = wx.Image("../icons/splash_en.png").ConvertToBitmap() wx.SplashScreen.__init__(self, bitmap=bmp, splashStyle=wx.SPLASH_CENTRE_ON_SCREEN | wx.SPLASH_TIMEOUT, - milliseconds=1, id=-1, parent=None) + milliseconds=1500, id=-1, parent=None) self.Bind(wx.EVT_CLOSE, self.OnClose) -- libgit2 0.21.2