From db8c58f780c905f7e070d2f5a73fd8929f9ec8e9 Mon Sep 17 00:00:00 2001 From: Tomas Zigo <50632337+tmszi@users.noreply.github.com> Date: Sun, 10 Sep 2023 20:06:34 +0200 Subject: [PATCH] wxGUI/vdidit: fix opening Vector Digitizer settings dialog while editing vector map (#3142) --- gui/wxpython/gui_core/gselect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/wxpython/gui_core/gselect.py b/gui/wxpython/gui_core/gselect.py index 10670395c55..aa15d48d2d8 100644 --- a/gui/wxpython/gui_core/gselect.py +++ b/gui/wxpython/gui_core/gselect.py @@ -1173,7 +1173,7 @@ def InsertColumns( if key in excludeCols: self.columns.remove(key) if type: # only selected column types - for key, value in columnchoices.item(): + for key, value in columnchoices.items(): if value["type"] not in type: try: self.columns.remove(key)