mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
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:
parent
905df71977
commit
490875e222
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user