[GRASS-SVN] r62642 - grass/trunk/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Nov 6 14:02:16 PST 2014
Author: annakrat
Date: 2014-11-06 14:02:16 -0800 (Thu, 06 Nov 2014)
New Revision: 62642
Modified:
grass/trunk/gui/wxpython/gui_core/widgets.py
Log:
wxGUI: fix d.northarrow thumbnail selection widget - change of directory structure was not reflected
Modified: grass/trunk/gui/wxpython/gui_core/widgets.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/widgets.py 2014-11-06 20:47:18 UTC (rev 62641)
+++ grass/trunk/gui/wxpython/gui_core/widgets.py 2014-11-06 22:02:16 UTC (rev 62642)
@@ -1427,8 +1427,8 @@
class NArrowsComboBox(PictureComboBox):
"""ComboBox with north arrows for d.barscale."""
def _getPath(self, name):
- path = os.path.join(os.getenv("GISBASE"), "etc", "gui", "images",
- 'symbols', 'n_arrows')
+ path = os.path.join(os.getenv("GISBASE"), "gui", "images",
+ 'symbols', 'n_arrows')
try:
int(name[0])
return os.path.join(path, 'n_arrow{name}.png'.format(name=name))
More information about the grass-commit
mailing list