Import Altium via tenting settings
This commit is contained in:
parent
16e708a0e7
commit
fa235116f7
|
@ -3738,6 +3738,14 @@ void ALTIUM_PCB::ParseVias6Data( const ALTIUM_COMPOUND_FILE& aAltiumPcbFile,
|
|||
// we need VIATYPE set!
|
||||
via->SetLayerPair( start_klayer, end_klayer );
|
||||
|
||||
if( elem.soldermask_expansion_manual )
|
||||
{
|
||||
via->SetFrontTentingMode( elem.is_tent_top ? TENTING_MODE::TENTED
|
||||
: TENTING_MODE::NOT_TENTED );
|
||||
via->SetBackTentingMode( elem.is_tent_bottom ? TENTING_MODE::TENTED
|
||||
: TENTING_MODE::NOT_TENTED );
|
||||
}
|
||||
|
||||
m_board->Add( via.release(), ADD_MODE::APPEND );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue