Gerbview: fix a typo that breaks gerber items collector.

This commit is contained in:
jean-pierre charras 2022-08-30 20:56:14 +02:00
parent a176bf383e
commit 7768c8f119
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ INSPECT_RESULT GBR_LAYOUT::Visit( INSPECTOR inspector, void* testData,
if( gerber == nullptr ) // Graphic layer not yet used if( gerber == nullptr ) // Graphic layer not yet used
continue; continue;
if( gerber->Visit( inspector, testData, { scanType } ) == INSPECT_RESULT::QUIT ) if( gerber->Visit( inspector, testData, aScanTypes ) == INSPECT_RESULT::QUIT )
return INSPECT_RESULT::QUIT; return INSPECT_RESULT::QUIT;
} }
} }