Skip to content

Commit

Permalink
wxGUI/rlisetup: allow EVT_KILL_FOCUS event handler event processing t…
Browse files Browse the repository at this point in the history
…o continue (#2385)

On wxMSW (OS MS Windows), SetFocus() method trigger EVT_KILL_FOCUS
event which handler require allow event processing to continue.
  • Loading branch information
tmszi committed May 20, 2022
1 parent 6514abf commit 58f4355
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gui/wxpython/rlisetup/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down

0 comments on commit 58f4355

Please sign in to comment.