[GRASS-SVN] r30651 -
grass/branches/releasebranch_6_3/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Mar 19 17:22:48 EDT 2008
Author: martinl
Date: 2008-03-19 17:22:48 -0400 (Wed, 19 Mar 2008)
New Revision: 30651
Modified:
grass/branches/releasebranch_6_3/gui/wxpython/gui_modules/digit.py
Log:
wxGUI (vdigit): minor fix (wxTextCtrl->wxSpinCtrl) backported from trunk, for RC6
Modified: grass/branches/releasebranch_6_3/gui/wxpython/gui_modules/digit.py
===================================================================
--- grass/branches/releasebranch_6_3/gui/wxpython/gui_modules/digit.py 2008-03-19 21:22:03 UTC (rev 30650)
+++ grass/branches/releasebranch_6_3/gui/wxpython/gui_modules/digit.py 2008-03-19 21:22:48 UTC (rev 30651)
@@ -2287,7 +2287,7 @@
newCat = max(self.cats[1]) + 1
except:
newCat = 1
- self.catNew.SetValue(str(newCat))
+ self.catNew.SetValue(newCat)
return True
More information about the grass-commit
mailing list