7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-20 08:31:40 +00:00

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

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;