[GRASS-SVN] r58013 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Oct 16 02:37:27 PDT 2013


Author: martinl
Date: 2013-10-16 02:37:27 -0700 (Wed, 16 Oct 2013)
New Revision: 58013

Modified:
   grass/trunk/gui/wxpython/gui_core/ghelp.py
Log:
wxGUI: attempt to fix about dialog on Windows

Modified: grass/trunk/gui/wxpython/gui_core/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/ghelp.py	2013-10-16 08:44:27 UTC (rev 58012)
+++ grass/trunk/gui/wxpython/gui_core/ghelp.py	2013-10-16 09:37:27 UTC (rev 58013)
@@ -63,8 +63,8 @@
                            (_("Translators"), self._pageTranslators()),
                            (_("Translation status"), self._pageStats())):
             self.aboutNotebook.AddPage(page = win, text = title)
-        self.aboutNotebook.Refresh()
         wx.CallAfter(self.aboutNotebook.SetSelection, 0)
+        wx.CallAfter(self.aboutNotebook.Refresh)
         
         # buttons
         self.btnClose = wx.Button(parent = self.panel, id = wx.ID_CLOSE)



More information about the grass-commit mailing list