From 490875e222429db30f1fce677d7ea5160ebfb9f7 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Fri, 29 Jul 2022 16:46:35 +0200 Subject: [PATCH] Fix a missing call to aEvent.Skip() in commit 753f2f3. Any wxSizeEvent handler must call Skip() to propagate the event. --- common/lib_tree_model_adapter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/lib_tree_model_adapter.cpp b/common/lib_tree_model_adapter.cpp index dfdd3997c2..95cf59d743 100644 --- a/common/lib_tree_model_adapter.cpp +++ b/common/lib_tree_model_adapter.cpp @@ -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(); }