diff --git a/eeschema/erc/erc.cpp b/eeschema/erc/erc.cpp index 5b1d2bf287..59e3f592b9 100644 --- a/eeschema/erc/erc.cpp +++ b/eeschema/erc/erc.cpp @@ -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; }