diff --git a/pcbnew/pcb_edit_frame.cpp b/pcbnew/pcb_edit_frame.cpp index 7fee5054c3..00ec8807d4 100644 --- a/pcbnew/pcb_edit_frame.cpp +++ b/pcbnew/pcb_edit_frame.cpp @@ -323,27 +323,19 @@ PCB_EDIT_FRAME::PCB_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent ) : m_auimgr.AddPane( m_appearancePanel, EDA_PANE().Name( wxS( "LayersManager" ) ) .Right().Layer( 4 ) .Caption( _( "Appearance" ) ).PaneBorder( false ) - .MinSize( FromDIP( 180 ), -1 ) - .BestSize( FromDIP( 180 ), -1 ) - .FloatingSize( FromDIP( 180 ), -1 ) + .MinSize( m_appearancePanel->GetMinSize().x, -1 ) + .BestSize( m_appearancePanel->GetBestSize().x, -1 ) + .FloatingSize( m_appearancePanel->GetBestSize() ) .CloseButton( false ) ); m_auimgr.AddPane( m_selectionFilterPanel, EDA_PANE().Name( wxS( "SelectionFilter" ) ) .Right().Layer( 4 ).Position( 2 ) .Caption( _( "Selection Filter" ) ).PaneBorder( false ) - .MinSize( FromDIP( 180 ), -1 ) - .BestSize( FromDIP( 180 ), -1 ) - .FloatingSize( FromDIP( 180 ), -1 ) + .MinSize( m_selectionFilterPanel->GetMinSize().x, m_selectionFilterPanel->GetMinSize().y ) + .BestSize( m_selectionFilterPanel->GetBestSize().x, m_selectionFilterPanel->GetMinSize().y ) + .FloatingSize( m_selectionFilterPanel->GetBestSize() ) .CloseButton( false ) ); - m_auimgr.AddPane( m_propertiesPanel, EDA_PANE().Name( PropertiesPaneName() ) - .Left().Layer( 5 ) - .Caption( _( "Properties" ) ).PaneBorder( false ) - .MinSize( FromDIP( wxSize( 240, 60 ) ) ) - .BestSize( FromDIP( wxSize( 300, 200 ) ) ) - .FloatingSize( wxSize( 300, 200 ) ) - .CloseButton( true ) ); - // Center m_auimgr.AddPane( GetCanvas(), EDA_PANE().Canvas().Name( wxS( "DrawFrame" ) ) .Center() ); diff --git a/pcbnew/widgets/panel_selection_filter.cpp b/pcbnew/widgets/panel_selection_filter.cpp index 40d5f89d65..87b4139675 100644 --- a/pcbnew/widgets/panel_selection_filter.cpp +++ b/pcbnew/widgets/panel_selection_filter.cpp @@ -64,6 +64,8 @@ PANEL_SELECTION_FILTER::PANEL_SELECTION_FILTER( wxWindow* aParent ) : m_cbOtherItems->Bind( wxEVT_RIGHT_DOWN, &PANEL_SELECTION_FILTER::onRightClick, this ); m_frame->Bind( EDA_LANG_CHANGED, &PANEL_SELECTION_FILTER::OnLanguageChanged, this ); + + SetMinSize( GetBestSize() ); }