[GRASS-SVN] r58007 - grass/trunk/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Oct 15 14:17:51 PDT 2013
Author: martinl
Date: 2013-10-15 14:17:51 -0700 (Tue, 15 Oct 2013)
New Revision: 58007
Modified:
grass/trunk/gui/wxpython/gui_core/ghelp.py
Log:
wxGUI/about: change to FormNotebook (FormListbook is broken on Windows)
Modified: grass/trunk/gui/wxpython/gui_core/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/ghelp.py 2013-10-15 16:13:51 UTC (rev 58006)
+++ grass/trunk/gui/wxpython/gui_core/ghelp.py 2013-10-15 21:17:51 UTC (rev 58007)
@@ -35,7 +35,7 @@
from core import globalvar
from core.utils import _
from core.gcmd import GError, DecodeString
-from gui_core.widgets import FormListbook, ScrolledPanel
+from gui_core.widgets import FormNotebook, ScrolledPanel
from core.debug import Debug
@@ -52,7 +52,7 @@
self.SetIcon(wx.Icon(os.path.join(globalvar.ETCICONDIR, 'grass.ico'), wx.BITMAP_TYPE_ICO))
# notebook
- self.aboutNotebook = FormListbook(self.panel, style = wx.BK_LEFT)
+ self.aboutNotebook = FormNotebook(self.panel, style = wx.BK_LEFT)
for title, win in ((_("Info"), self._pageInfo()),
(_("Copyright"), self._pageCopyright()),
More information about the grass-commit
mailing list