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_colWidths[NAME_COL] = m_col_part->GetWidth();
|
||||||
m_col_desc->SetWidth( m_colWidths[DESC_COL] );
|
m_col_desc->SetWidth( m_colWidths[DESC_COL] );
|
||||||
|
|
||||||
|
// Mandatory in any wxSizeEvent handler:
|
||||||
|
aEvent.Skip();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue