From 9763ed3b8be7ae9ec19d10c91510d749de5c9037 Mon Sep 17 00:00:00 2001 From: Tomas Zigo Date: Fri, 14 Jul 2023 21:34:58 +0200 Subject: [PATCH] wxGUI/psmap: fix close vector map properties dialog after hit OK button --- gui/wxpython/psmap/dialogs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/wxpython/psmap/dialogs.py b/gui/wxpython/psmap/dialogs.py index ed6d84cb5c8..50776a3853f 100644 --- a/gui/wxpython/psmap/dialogs.py +++ b/gui/wxpython/psmap/dialogs.py @@ -3290,6 +3290,7 @@ def update(self): def OnOK(self, event): self.update() event.Skip() + self.Destroy() class LegendDialog(PsmapDialog):