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:
Simon Schaak 2021-10-28 16:25:51 +02:00 committed by Jeff Young
parent af95a4b424
commit f79cb382c4
1 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,8 @@ public:
switch( aCol )
{
case COL_NUMBER:
pin->SetNumber( aValue );
if( pins.size() == 1 )
pin->SetNumber( aValue );
break;
case COL_NAME: