Skip to content

Commit

Permalink
wxGUI/datacatalog: fix display 3D raster (#889)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmszi authored and petrasovaa committed Aug 10, 2020
1 parent 04c807c commit 3bc9f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/datacatalog/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ def OnDisplayLayer(self, event):
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)
Expand Down

0 comments on commit 3bc9f39

Please sign in to comment.