Sync via/pad flashing for null boards
Pads return true by default and so should vias
(cherry picked from commit bfa1661edf
)
This commit is contained in:
parent
ce9bd780d1
commit
2f2e956921
|
@ -533,7 +533,7 @@ bool PCB_VIA::FlashLayer( int aLayer ) const
|
||||||
const BOARD* board = GetBoard();
|
const BOARD* board = GetBoard();
|
||||||
|
|
||||||
if( !board )
|
if( !board )
|
||||||
return false;
|
return true;
|
||||||
|
|
||||||
if( !IsOnLayer( static_cast<PCB_LAYER_ID>( aLayer ) ) )
|
if( !IsOnLayer( static_cast<PCB_LAYER_ID>( aLayer ) ) )
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue