Browse Source

Fix for SCH_PIN operator= from Simon Richter.

pull/15/head
Jeff Young 7 years ago
parent
commit
c994961ebf
  1. 2
      eeschema/sch_pin.cpp

2
eeschema/sch_pin.cpp

@ -50,6 +50,8 @@ SCH_PIN& SCH_PIN::operator=( const SCH_PIN& aPin )
m_libPin = aPin.m_libPin;
m_position = aPin.m_position;
m_isDangling = aPin.m_isDangling;
return *this;
}

Loading…
Cancel
Save