Browse Source

Fix some misplaced parens.

Fixes: lp:1818449
* https://bugs.launchpad.net/kicad/+bug/1818449
pull/15/head
Jeff Young 6 years ago
parent
commit
2ad40ad10a
  1. 5
      pcbnew/collectors.cpp

5
pcbnew/collectors.cpp

@ -412,9 +412,10 @@ SEARCH_RESULT GENERAL_COLLECTOR::Inspect( EDA_ITEM* testItem, void* testData )
else if( item->HitTest( m_RefPos ) )
{
if( !module || module->HitTestAccurate( m_RefPos ) )
{
Append( item );
goto exit;
goto exit;
}
}
}
}

Loading…
Cancel
Save