Do not update tree to selected sheet in schematic hierarchy navigator.
This was causing unwanted tree expansions when descending a sheet hierarchy in editor. Also fixed an issue with the tree highlighting when changing sheets in the schematic editor.
This commit is contained in:
parent
bbdefa05eb
commit
50cad558cf
|
@ -151,8 +151,6 @@ void HIERARCHY_PANE::UpdateHierarchySelection()
|
|||
m_events_bound = false;
|
||||
}
|
||||
|
||||
bool sheetSelected = false;
|
||||
|
||||
std::function<void( const wxTreeItemId& )> recursiveDescent =
|
||||
[&]( const wxTreeItemId& id )
|
||||
{
|
||||
|
@ -162,21 +160,22 @@ void HIERARCHY_PANE::UpdateHierarchySelection()
|
|||
|
||||
if( itemData->m_SheetPath == m_frame->GetCurrentSheet() )
|
||||
{
|
||||
m_tree->EnsureVisible( id );
|
||||
wxTreeItemId parent = m_tree->GetItemParent( id );
|
||||
|
||||
if( parent.IsOk() && !m_tree->IsExpanded( parent ) )
|
||||
m_tree->Expand( parent );
|
||||
|
||||
if( !m_tree->IsVisible( id ) )
|
||||
m_tree->EnsureVisible( id );
|
||||
|
||||
m_tree->SetItemBold( id, true );
|
||||
m_tree->SetFocusedItem( id );
|
||||
}
|
||||
else
|
||||
{
|
||||
m_tree->SetItemBold( id, false );
|
||||
}
|
||||
|
||||
if( itemData->m_SheetPath.Last()->IsSelected() )
|
||||
{
|
||||
m_tree->EnsureVisible( id );
|
||||
m_tree->SelectItem( id );
|
||||
sheetSelected = true;
|
||||
}
|
||||
|
||||
wxTreeItemIdValue cookie;
|
||||
wxTreeItemId child = m_tree->GetFirstChild( id, cookie );
|
||||
|
||||
|
@ -189,9 +188,6 @@ void HIERARCHY_PANE::UpdateHierarchySelection()
|
|||
|
||||
recursiveDescent( m_tree->GetRootItem() );
|
||||
|
||||
if( !sheetSelected && m_tree->GetSelection() )
|
||||
m_tree->SelectItem( m_tree->GetSelection(), false );
|
||||
|
||||
if( eventsWereBound )
|
||||
{
|
||||
// Enable selection events
|
||||
|
|
Loading…
Reference in New Issue