PCM: fix a minor cosmetic issue when resizing the dialog.

Fixes #9647
https://gitlab.com/kicad/code/kicad/issues/9647
This commit is contained in:
jean-pierre charras 2021-11-18 10:57:52 +01:00
parent 8f87638de5
commit cf334b1ebb
1 changed files with 2 additions and 0 deletions

View File

@ -664,6 +664,8 @@ void PANEL_PACKAGES_VIEW::OnSizeInfoBox( wxSizeEvent& aEvent )
m_infoText->SetMaxSize( infoSize );
m_infoText->SetSize( infoSize );
m_infoText->Layout();
Refresh();
}