7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 10:51:41 +00:00

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

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;
}