Don't set IS_CHANGED on symbol when modifying LIB_PINs for painting.

This commit is contained in:
Jeff Young 2023-06-25 15:57:33 +01:00
parent f643a8f5bf
commit 9854acd9e6
1 changed files with 1 additions and 5 deletions

View File

@ -1082,11 +1082,7 @@ void LIB_PIN::Offset( const VECTOR2I& aOffset )
void LIB_PIN::MoveTo( const VECTOR2I& aNewPosition )
{
if( m_position != aNewPosition )
{
m_position = aNewPosition;
SetModified();
}
}