[GRASS-SVN] r32536 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Aug 5 02:47:09 EDT 2008
Author: cmbarton
Date: 2008-08-05 02:47:09 -0400 (Tue, 05 Aug 2008)
New Revision: 32536
Modified:
grass/trunk/gui/wxpython/gui_modules/preferences.py
Log:
Removed check box to make opacity editable. No longer relevant.
Modified: grass/trunk/gui/wxpython/gui_modules/preferences.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/preferences.py 2008-08-05 06:34:51 UTC (rev 32535)
+++ grass/trunk/gui/wxpython/gui_modules/preferences.py 2008-08-05 06:47:09 UTC (rev 32536)
@@ -111,7 +111,7 @@
'type' : 'vdigit'
}, # vedit, vdigit
'iconTheme' : {
- 'type' : 'silk'
+ 'type' : 'grass'
}, # grass, silk
},
#
@@ -864,23 +864,10 @@
gridSizer = wx.GridBagSizer (hgap=3, vgap=3)
gridSizer.AddGrowableCol(0)
- #
- # show opacily level
- #
- row = 0
- changeOpacityLevel = wx.CheckBox(parent=panel, id=wx.ID_ANY,
- label=_("Opacity level editable"),
- name='IsChecked')
- changeOpacityLevel.SetValue(self.settings.Get(group='manager', key='changeOpacityLevel', subkey='enabled'))
- self.winId['manager:changeOpacityLevel:enabled'] = changeOpacityLevel.GetId()
- gridSizer.Add(item=changeOpacityLevel,
- pos=(row, 0), span=(1, 2))
-
#
# ask when removing map layer from layer tree
#
- row += 1
askOnRemoveLayer = wx.CheckBox(parent=panel, id=wx.ID_ANY,
label=_("Ask when removing map layer from layer tree"),
name='IsChecked')
More information about the grass-commit
mailing list