Browse Source

wxGUI: revert conflict changes introduced in https://trac.osgeo.org/grass/changeset/32829

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@32835 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 16 years ago
parent
commit
9089d260f4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      gui/wxpython/gui_modules/wxgui_utils.py

+ 2 - 2
gui/wxpython/gui_modules/wxgui_utils.py

@@ -725,8 +725,8 @@ class LayerTree(treemixin.DragAndDrop, CT.CustomTreeCtrl):
         elif ltype == 'raster':
             cmd = ['d.rast']
             
-            if UserSettings.Get(group='cmd', key='rasterOverlay', subkey='enabled'):
-                cmd.append('-o')
+            if UserSettings.Get(group='cmd', key='rasterOpaque', subkey='enabled'):
+                cmd.append('-n')
             menuform.GUI().ParseCommand(cmd, completed=(self.GetOptData,layer,params),
                                         parentframe=self)
         elif ltype == '3d-raster':