Copy dangling flag when cloning.

Fixes: lp:1804005
* https://bugs.launchpad.net/kicad/+bug/1804005
This commit is contained in:
Jeff Young 2018-11-19 19:07:29 +00:00
parent 8522baf4a7
commit e715835c29
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ SCH_TEXT::SCH_TEXT( const SCH_TEXT& aText ) :
EDA_TEXT( aText )
{
m_shape = aText.m_shape;
m_isDangling = false;
m_isDangling = aText.m_isDangling;
m_spin_style = aText.m_spin_style;
}