Browse Source

wxGUI/datacatalog: fix display 3D raster (#889)

Tomas Zigo 4 years ago
parent
commit
3bc9f391d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/datacatalog/tree.py

+ 1 - 1
gui/wxpython/datacatalog/tree.py

@@ -844,7 +844,7 @@ class DataCatalogTree(LocationMapTree):
     def DisplayLayer(self):
         """Display selected layer in current graphics view"""
         all_names = []
-        names = {'raster': [], 'vector': [], 'raster3d': []}
+        names = {'raster': [], 'vector': [], 'raster_3d': []}
         for i in range(len(self.selected_layer)):
             name = self.selected_layer[i].label + '@' + self.selected_mapset[i].label
             names[self.selected_type[i].label].append(name)