New Spin control: KillFocus wasn't processed correct in Ramming and ConfigWizard dialogs

This commit is contained in:
YuSanka 2023-11-14 16:48:42 +01:00
parent 53ad95bfd9
commit 8876d61d03

View File

@ -384,7 +384,7 @@ void SpinInput::onTextLostFocus(wxEvent &event)
// pass to outer
event.SetId(GetId());
ProcessEventLocally(event);
e.Skip();
event.Skip();
}
void SpinInput::onTextEnter(wxCommandEvent &event)
@ -581,7 +581,7 @@ void SpinInputDouble::onTextLostFocus(wxEvent &event)
// pass to outer
event.SetId(GetId());
ProcessEventLocally(event);
e.Skip();
event.Skip();
}
void SpinInputDouble::onTextEnter(wxCommandEvent &event)