Fix another place disallowing internal microvias.
Fixes https://gitlab.com/kicad/code/kicad/issues/8716
This commit is contained in:
parent
98616d2c96
commit
780a8a5154
|
@ -885,25 +885,25 @@ int ROUTER_TOOL::handleLayerSwitch( const TOOL_EVENT& aEvent, bool aForceVia )
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case VIATYPE::MICROVIA:
|
case VIATYPE::MICROVIA:
|
||||||
wxASSERT_MSG( !selectLayer, "Unexpected select layer for microvia (microvia layers are "
|
if( targetLayer == UNDEFINED_LAYER )
|
||||||
"implicit)" );
|
|
||||||
|
|
||||||
if( currentLayer == F_Cu || currentLayer == In1_Cu )
|
|
||||||
{
|
{
|
||||||
// front-side microvia
|
if( currentLayer == F_Cu || currentLayer == In1_Cu )
|
||||||
currentLayer = F_Cu;
|
{
|
||||||
targetLayer = In1_Cu;
|
// front-side microvia
|
||||||
}
|
currentLayer = F_Cu;
|
||||||
else if( currentLayer == B_Cu || currentLayer == layerCount - 2 )
|
targetLayer = In1_Cu;
|
||||||
{
|
}
|
||||||
// back-side microvia
|
else if( currentLayer == B_Cu || currentLayer == layerCount - 2 )
|
||||||
currentLayer = B_Cu,
|
{
|
||||||
targetLayer = (PCB_LAYER_ID) ( layerCount - 2 );
|
// back-side microvia
|
||||||
}
|
currentLayer = B_Cu,
|
||||||
else
|
targetLayer = (PCB_LAYER_ID) ( layerCount - 2 );
|
||||||
{
|
}
|
||||||
wxASSERT_MSG( false, "Invalid layer pair for microvia (must be on or adjacent to an "
|
else
|
||||||
"outer layer)" );
|
{
|
||||||
|
wxASSERT_MSG( false, "Invalid implicit layer pair for microvia (must be on or "
|
||||||
|
"adjacent to an outer layer)." );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue