7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:55:30 +00:00

Zone Manager: Refactor zone selection logic to streamline activation process

This commit is contained in:
Ethan Chien 2025-01-04 21:12:12 +08:00
parent 1efc4544c9
commit 7c86768f16

View File

@ -163,8 +163,6 @@ void PANE_ZONE_VIEWER::ActivateSelectedZone( ZONE* aZone )
}
}
SetSelection( FindPage( m_zoneContainers[firstLayer] ) );
if( !m_zoneGAL )
{
m_zoneGAL = ( new PANEL_ZONE_GAL( m_pcbFrame->GetBoard(),
@ -177,6 +175,7 @@ void PANE_ZONE_VIEWER::ActivateSelectedZone( ZONE* aZone )
m_zoneContainers[firstLayer]->ResetZoneGAL( m_zoneGAL );
}
SetSelection( FindPage( m_zoneContainers[firstLayer] ) );
m_zoneGAL->ActivateSelectedZone( aZone );
}