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:
Seth Hillbrand 2022-04-12 11:37:18 -07:00
parent ce9bd780d1
commit 2f2e956921
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ bool PCB_VIA::FlashLayer( int aLayer ) const
const BOARD* board = GetBoard();
if( !board )
return false;
return true;
if( !IsOnLayer( static_cast<PCB_LAYER_ID>( aLayer ) ) )
return false;