Symbol editor: fix name corruption in pin table
Discard changes to pin numbers of grouped pins in the pin table to avoid setting all pins of the group to the same number.
This commit is contained in:
parent
af95a4b424
commit
f79cb382c4
|
@ -155,7 +155,8 @@ public:
|
|||
switch( aCol )
|
||||
{
|
||||
case COL_NUMBER:
|
||||
pin->SetNumber( aValue );
|
||||
if( pins.size() == 1 )
|
||||
pin->SetNumber( aValue );
|
||||
break;
|
||||
|
||||
case COL_NAME:
|
||||
|
|
Loading…
Reference in New Issue