Hide unused message panel in footprint/symbol chooser frames.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/15810 Fixes https://gitlab.com/kicad/code/kicad/-/issues/15889
This commit is contained in:
parent
764de7257f
commit
badc4e7411
|
@ -71,6 +71,8 @@ SYMBOL_CHOOSER_FRAME::SYMBOL_CHOOSER_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
||||||
{
|
{
|
||||||
SetModal( true );
|
SetModal( true );
|
||||||
|
|
||||||
|
m_messagePanel->Hide();
|
||||||
|
|
||||||
wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
|
wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
|
||||||
|
|
||||||
std::vector<PICKED_SYMBOL> dummyAlreadyPlaced;
|
std::vector<PICKED_SYMBOL> dummyAlreadyPlaced;
|
||||||
|
|
|
@ -80,6 +80,8 @@ FOOTPRINT_CHOOSER_FRAME::FOOTPRINT_CHOOSER_FRAME( KIWAY* aKiway, wxWindow* aPare
|
||||||
{
|
{
|
||||||
SetModal( true );
|
SetModal( true );
|
||||||
|
|
||||||
|
m_messagePanel->Hide();
|
||||||
|
|
||||||
m_filterByFPFilters = new wxCheckBox( this, wxID_ANY, _( "Apply footprint filters" ) );
|
m_filterByFPFilters = new wxCheckBox( this, wxID_ANY, _( "Apply footprint filters" ) );
|
||||||
m_filterByPinCount = new wxCheckBox( this, wxID_ANY, _( "Filter by pin count" ) );
|
m_filterByPinCount = new wxCheckBox( this, wxID_ANY, _( "Filter by pin count" ) );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue