Explorar el Código

wxGUI/about: change to FormNotebook (FormListbook is broken on Windows)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58007 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa hace 11 años
padre
commit
f783069531
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      gui/wxpython/gui_core/ghelp.py

+ 2 - 2
gui/wxpython/gui_core/ghelp.py

@@ -35,7 +35,7 @@ import grass.script as grass
 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 @@ class AboutWindow(wx.Frame):
         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()),