Przeglądaj źródła

wxGUI: splash screen changed to 2sec

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@64490 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 10 lat temu
rodzic
commit
5917945a09
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gui/wxpython/wxgui.py

+ 1 - 1
gui/wxpython/wxgui.py

@@ -74,7 +74,7 @@ class GSplashScreen(wx.SplashScreen):
         bitmap = wx.Image(name=os.path.join(globalvar.IMGDIR, "splash_screen.png")).ConvertToBitmap()
         wx.SplashScreen.__init__(self, bitmap,
                                  wx.SPLASH_CENTRE_ON_SCREEN | wx.SPLASH_TIMEOUT,
-                                 1000, parent)
+                                 2000, parent)
         self.Bind(wx.EVT_CLOSE, self.OnExit)
 
         wx.Yield()