From 9c42ae3d707a397d8ed0e56680be95c91ce51ba0 Mon Sep 17 00:00:00 2001 From: Tomas Zigo <50632337+tmszi@users.noreply.github.com> Date: Fri, 20 May 2022 06:10:37 +0200 Subject: [PATCH] wxGUI/rlisetup: allow EVT_KILL_FOCUS event handler event processing to continue (#2385) On wxMSW (OS MS Windows), SetFocus() method trigger EVT_KILL_FOCUS event which handler require allow event processing to continue. --- gui/wxpython/rlisetup/wizard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/wxpython/rlisetup/wizard.py b/gui/wxpython/rlisetup/wizard.py index 023d6ef3395..a9baaec981f 100644 --- a/gui/wxpython/rlisetup/wizard.py +++ b/gui/wxpython/rlisetup/wizard.py @@ -649,6 +649,7 @@ def OnName(self, event): ) self.newconftxt.SetValue("") self.conf_name = "" + event.Skip() def OnNameChanged(self, event): """Name of configuration file has changed"""