fix blind via early return in VRML exporter

This commit is contained in:
Anton Lazarev 2021-07-24 18:25:25 -07:00 committed by Wayne Stambaugh
parent 010247bb7f
commit 42086a455d
1 changed files with 1 additions and 1 deletions

View File

@ -637,7 +637,7 @@ void EXPORTER_PCB_VRML::ExportVrmlViaHoles()
// do not render a buried via
if( top_layer != F_Cu && bottom_layer != B_Cu )
return;
continue;
// Export all via holes to m_holes
double hole_radius = via->GetDrillValue() * m_BoardToVrmlScale / 2.0;