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

svn_grass at osgeo.org svn_grass at osgeo.org
Thu May 1 09:23:49 PDT 2014


Author: martinl
Date: 2014-05-01 09:23:49 -0700 (Thu, 01 May 2014)
New Revision: 60013

Modified:
   grass/trunk/gui/wxpython/gui_core/ghelp.py
Log:
fix wxGUI AboutWindow (broken icon path)


Modified: grass/trunk/gui/wxpython/gui_core/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/ghelp.py	2014-05-01 16:19:15 UTC (rev 60012)
+++ grass/trunk/gui/wxpython/gui_core/ghelp.py	2014-05-01 16:23:49 UTC (rev 60013)
@@ -104,7 +104,7 @@
         infoTxt.SetupScrolling()
         infoSizer = wx.BoxSizer(wx.VERTICAL)
         infoGridSizer = wx.GridBagSizer(vgap = 5, hgap = 5)
-        logo = os.path.join(globalvar.ETCDIR, "gui", "icons", "grass-64x64.png")
+        logo = os.path.join(globalvar.ICONDIR, "grass-64x64.png")
         logoBitmap = wx.StaticBitmap(parent = infoTxt, id = wx.ID_ANY,
                                      bitmap = wx.Bitmap(name = logo,
                                                         type = wx.BITMAP_TYPE_PNG))



More information about the grass-commit mailing list