pagelayout_editor, properties_frame.cpp: add missing event.Skip()

wxFocusEvent code **must** skip the event after processing it.
This commit is contained in:
jean-pierre charras 2024-08-16 13:13:49 +02:00
parent b7f3842b0e
commit bcdd4ffea4

View File

@ -466,6 +466,7 @@ void PROPERTIES_FRAME::onModify( wxCommandEvent& aEvent )
void PROPERTIES_FRAME::onTextFocusLost( wxFocusEvent& aEvent )
{
m_propertiesDirty = true;
aEvent.Skip(); // Mandatory in wxFocusEvent
}