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 (OSGeo#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 authored and neteler committed Nov 7, 2023
1 parent 94985d2 commit d1b7f36
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 d1b7f36

Please sign in to comment.