[GRASS-SVN] r54750 - grass/trunk/gui/wxpython/lmgr
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Jan 22 05:26:19 PST 2013
Author: martinl
Date: 2013-01-22 05:26:19 -0800 (Tue, 22 Jan 2013)
New Revision: 54750
Modified:
grass/trunk/gui/wxpython/lmgr/layertree.py
Log:
wxGUI: fix GetDisplayVectSettings() usage
Modified: grass/trunk/gui/wxpython/lmgr/layertree.py
===================================================================
--- grass/trunk/gui/wxpython/lmgr/layertree.py 2013-01-22 12:35:36 UTC (rev 54749)
+++ grass/trunk/gui/wxpython/lmgr/layertree.py 2013-01-22 13:26:19 UTC (rev 54750)
@@ -1086,13 +1086,12 @@
if UserSettings.Get(group = 'rasterLayer', key = 'opaque', subkey = 'enabled'):
cmd.append('-n')
elif ltype == 'vector':
- cmd.append(GetDisplayVectSettings())
-
+ cmd += GetDisplayVectSettings()
+
# ltype == 'thememap':
# -s flag requested, otherwise only first thematic category is displayed
# should be fixed by C-based d.thematic.* modules
-
-
+
if cmd:
GUI(parent = self, centreOnParent = False).ParseCommand(cmd,
completed = (self.GetOptData,layer,params))
More information about the grass-commit
mailing list