Similar local labels on different sheets are fine
Fixes https://gitlab.com/kicad/code/kicad/-/issues/21334
(cherry picked from commit 3eb66e1b3d)
This commit is contained in:
@@ -1347,6 +1347,13 @@ int ERC_TESTER::TestSimilarLabels()
|
||||
|
||||
if( unnormalized != otherText )
|
||||
{
|
||||
// Similar local labels on different sheets are fine
|
||||
if( item->Type() == SCH_LABEL_T && otherItem->Type() == SCH_LABEL_T
|
||||
&& sheet != otherSheet )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
logError( normalized, label, sheet, otherTuple );
|
||||
errors += 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user