Skip to content

Commit 6170ff5

Browse files
authored
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.
1 parent d1def5e commit 6170ff5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

gui/wxpython/rlisetup/wizard.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,7 @@ def OnName(self, event):
649649
)
650650
self.newconftxt.SetValue("")
651651
self.conf_name = ""
652+
event.Skip()
652653

653654
def OnNameChanged(self, event):
654655
"""Name of configuration file has changed"""

0 commit comments

Comments
 (0)