pcbnew: Fixup formatting and comments in pcb_painter.cpp

This commit is contained in:
Ian McInerney 2019-11-18 23:42:39 +00:00
parent 6b477a96d6
commit 0eee21e450
1 changed files with 7 additions and 6 deletions

View File

@ -569,8 +569,8 @@ void PCB_PAINTER::draw( const VIA* aVia, int aLayer )
if( aVia->GetViaType() == VIA_BLIND_BURIED && aLayer != LAYER_VIAS_HOLES )
{
// Buried vias are drawn in a special way to indicate the top and bottom layers
// Holes however are always drawn in the same way
// Outer circles of blind/buried vias are drawn in a special way to indicate the
// top and bottom layers
PCB_LAYER_ID layerTop, layerBottom;
aVia->LayerPair( &layerTop, &layerBottom );
@ -591,6 +591,7 @@ void PCB_PAINTER::draw( const VIA* aVia, int aLayer )
}
else
{
// Draw the outer circles of normal vias and the inner circles for all vias
m_gal->DrawCircle( center, radius );
}