Fix broken refactor
Don't trust the automatic refactor. It misses the strangest things
This commit is contained in:
parent
3a15fa5e0f
commit
8b7d997a6d
|
@ -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 ) );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue