Fix ordering of selection filter and net navigator
This commit is contained in:
parent
585cf841e5
commit
c51e9917ba
|
@ -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 )
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Reference in New Issue