When the sash button is right next to the fp dropdown they look related.

This commit is contained in:
Jeff Young 2022-09-30 12:30:04 +01:00
parent f2de3e9f67
commit 67caebe4c4
1 changed files with 3 additions and 3 deletions

View File

@ -299,7 +299,7 @@ wxPanel* DIALOG_CHOOSE_SYMBOL::ConstructRightPanel( wxWindow* aParent )
{
FOOTPRINT_LIST* fp_list = FOOTPRINT_LIST::GetInstance( Kiway() );
sizer->Add( m_symbol_preview, 1, wxEXPAND | wxALL, 5 );
sizer->Add( m_symbol_preview, 11, wxEXPAND | wxALL, 5 );
if ( fp_list )
{
@ -310,10 +310,10 @@ wxPanel* DIALOG_CHOOSE_SYMBOL::ConstructRightPanel( wxWindow* aParent )
}
if( m_fp_sel_ctrl )
sizer->Add( m_fp_sel_ctrl, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, 3 );
sizer->Add( m_fp_sel_ctrl, 0, wxEXPAND | wxALL, 4 );
if( m_fp_preview )
sizer->Add( m_fp_preview, 1, wxEXPAND | wxALL, 5 );
sizer->Add( m_fp_preview, 10, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5 );
}
else
{