Przeglądaj źródła

wxGUI/about: cosmetics (first page)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@50425 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 lat temu
rodzic
commit
a0db3d78b9
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      gui/wxpython/gui_core/ghelp.py

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

@@ -408,6 +408,7 @@ class AboutWindow(wx.Frame):
         info = wx.StaticText(parent = infoTxt, id = wx.ID_ANY,
                              label = 'GRASS GIS ' + vInfo['version'] + '\n\n')
         info.SetFont(wx.Font(13, wx.DEFAULT, wx.NORMAL, wx.BOLD, 0, ""))
+        info.SetForegroundColour(wx.Colour(35, 142, 35))
         infoSizer.Add(item = info, proportion = 0,
                       flag = wx.BOTTOM | wx.ALIGN_CENTER, border = 15)
         
@@ -452,7 +453,7 @@ class AboutWindow(wx.Frame):
                           flag = wx.ALIGN_RIGHT)
         
         infoGridSizer.Add(item = wx.StaticText(parent = infoTxt, id = wx.ID_ANY,
-                                               label = sys.version),
+                                               label = sys.version.replace(os.linesep, '')),
                           pos = (row, 1),
                           flag = wx.ALIGN_LEFT)