Browse Source

call SetSelection() explicitly

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@40057 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 15 years ago
parent
commit
80b17d59a7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      gui/wxpython/gui_modules/help.py

+ 2 - 0
gui/wxpython/gui_modules/help.py

@@ -425,6 +425,8 @@ class AboutWindow(wx.Frame):
         pg5 = aboutNotebook.AddPage(contribwin,   text=_("Contributors"))
         pg5 = aboutNotebook.AddPage(transwin,     text=_("Translators"))
         
+        wx.CallAfter(aboutNotebook.SetSelection, 0)
+        
         # buttons
         btnClose = wx.Button(parent = panel, id = wx.ID_CLOSE)
         btnSizer = wx.BoxSizer(wx.HORIZONTAL)