Fix typo loading legacy tenting setting

This commit is contained in:
Jon Evans 2024-06-12 17:42:25 -04:00
parent 44a33eedf4
commit ccc76aad2f
1 changed files with 1 additions and 1 deletions

View File

@ -2397,7 +2397,7 @@ void PCB_IO_KICAD_SEXPR_PARSER::parseSetup()
if( plotParams.GetLegacyPlotViaOnMaskLayer().has_value() )
{
bool tent = *plotParams.GetLegacyPlotViaOnMaskLayer();
bool tent = !( *plotParams.GetLegacyPlotViaOnMaskLayer() );
m_board->GetDesignSettings().m_TentViasFront = tent;
m_board->GetDesignSettings().m_TentViasBack = tent;
}