Make Eeschema component cache library rescue check for pin name changes.
This commit is contained in:
parent
0cab3e47ad
commit
1c47a85ab9
|
@ -219,7 +219,7 @@ static void find_rescues( std::vector<SCH_COMPONENT*>& aComponents, PART_LIBS* a
|
|||
// Test whether there is a conflict
|
||||
if( !cache_match || !lib_match )
|
||||
continue;
|
||||
if( !cache_match->PinsConflictWith( *lib_match, /* aTestNums */ true, /* aTestNames */ false,
|
||||
if( !cache_match->PinsConflictWith( *lib_match, /* aTestNums */ true, /* aTestNames */ true,
|
||||
/* aTestType */ true, /* aTestOrientation */ true, /* aTestLength */ false ))
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in New Issue