Commit 4f54233d authored by Claes Sjofors's avatar Claes Sjofors

Ge recursive dynamic bugfix for annotations

parent 78fd8094
......@@ -246,6 +246,12 @@ void GlowArray::copy_from( const GlowArray& array)
insert( n);
break;
}
case glow_eObjectType_GrowAnnot:
{
GrowAnnot *n = new GrowAnnot( *(GrowAnnot *)array.a[i]);
insert( n);
break;
}
case glow_eObjectType_GrowAxisArc:
{
GrowAxisArc *n = new GrowAxisArc(*(GrowAxisArc *)array.a[i]);
......@@ -2031,4 +2037,4 @@ void GlowArray::set_linetype( glow_eLineType type)
void GlowArray::export_flow( GlowExportFlow *ef)
{
ef->array( this);
}
\ No newline at end of file
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment