Fix a missing call to aEvent.Skip() in commit 753f2f3.

Any wxSizeEvent handler must call Skip() to propagate the event.
This commit is contained in:
jean-pierre charras 2022-07-29 16:46:35 +02:00
parent 905df71977
commit 490875e222
1 changed files with 3 additions and 0 deletions

View File

@ -361,6 +361,9 @@ void LIB_TREE_MODEL_ADAPTER::OnSize( wxSizeEvent& aEvent )
{
m_colWidths[NAME_COL] = m_col_part->GetWidth();
m_col_desc->SetWidth( m_colWidths[DESC_COL] );
// Mandatory in any wxSizeEvent handler:
aEvent.Skip();
}