FOOTPRINT_CHOOSER_FRAME: Fix a UI problem specific to Linux

On the bottom on the frame, some widgets were not correctly placed.
Fixes #17217
https://gitlab.com/kicad/code/kicad/-/issues/17217
This commit is contained in:
jean-pierre charras 2024-03-01 19:55:37 +01:00
parent 0d03f2febc
commit 005affd473
1 changed files with 3 additions and 0 deletions

View File

@ -199,6 +199,9 @@ FOOTPRINT_CHOOSER_FRAME::FOOTPRINT_CHOOSER_FRAME( KIWAY* aKiway, wxWindow* aPare
Connect( FP_SELECTION_EVENT, // custom event fired by a PANEL_FOOTPRINT_CHOOSER Connect( FP_SELECTION_EVENT, // custom event fired by a PANEL_FOOTPRINT_CHOOSER
wxCommandEventHandler( FOOTPRINT_CHOOSER_FRAME::onFpChanged ), NULL, this ); wxCommandEventHandler( FOOTPRINT_CHOOSER_FRAME::onFpChanged ), NULL, this );
// Needed on Linux to fix the position of widgets in bottomPanel
PostSizeEvent();
} }