Fix ordering of selection filter and net navigator

This commit is contained in:
Jon Evans 2024-03-02 20:20:58 -05:00
parent 585cf841e5
commit c51e9917ba
2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ const wxAuiPaneInfo& defaultNetNavigatorPaneInfo()
.Caption( _( "Net Navigator" ) )
.CaptionVisible( true )
.PaneBorder( true )
.Left().Layer( 3 ).Position( 1 )
.Left().Layer( 3 ).Position( 0 )
.TopDockable( false )
.BottomDockable( false )
.CloseButton( true )
@ -114,7 +114,7 @@ const wxAuiPaneInfo& defaultSchSelectionFilterPaneInfo( wxWindow* aWindow )
.Caption( _( "Selection Filter" ) )
.CaptionVisible( true )
.PaneBorder( false )
.Left().Layer( 3 ).Position( 3 )
.Left().Layer( 3 ).Position( 4 )
.TopDockable( false )
.BottomDockable( false )
.CloseButton( false )

View File

@ -206,7 +206,7 @@ SCH_EDIT_FRAME::SCH_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
// Columns; layers 1 - 3
m_auimgr.AddPane( m_hierarchy, EDA_PANE().Palette().Name( SchematicHierarchyPaneName() )
.Caption( _( "Schematic Hierarchy" ) )
.Left().Layer( 3 )
.Left().Layer( 3 ).Position( 1 )
.TopDockable( false )
.BottomDockable( false )
.CloseButton( true )