7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-19 00:21:36 +00:00

Fix broken refactor

Don't trust the automatic refactor.  It misses the strangest things
This commit is contained in:
Seth Hillbrand 2022-11-08 20:30:07 -08:00
parent 3a15fa5e0f
commit 8b7d997a6d

View File

@ -2377,7 +2377,7 @@ void PCB_PAINTER::draw( const ZONE* aZone, int aLayer )
// Draw holes
int holes_count = outline->HoleCount( ii );
for( int jj = 0; ii < holes_count; ++jj )
for( int jj = 0; jj < holes_count; ++jj )
m_gal->DrawPolyline( outline->CHole( ii, jj ) );
}