CADSTAR Schematic: Fix orientation of symbol fields
This commit is contained in:
parent
9148542219
commit
45409ec314
|
@ -1696,7 +1696,9 @@ void CADSTAR_SCH_ARCHIVE_LOADER::loadSymbolFieldAttribute(
|
||||||
|
|
||||||
ALIGNMENT alignment = aCadstarAttrLoc.Alignment;
|
ALIGNMENT alignment = aCadstarAttrLoc.Alignment;
|
||||||
|
|
||||||
double textAngle = getAngleTenthDegree( aCadstarAttrLoc.OrientAngle ) - aComponentOrientationDeciDeg;
|
double textAngle = aComponentOrientationDeciDeg
|
||||||
|
- getAngleTenthDegree( aCadstarAttrLoc.OrientAngle );
|
||||||
|
|
||||||
long long cadstarAngle = getCadstarAngle( textAngle );
|
long long cadstarAngle = getCadstarAngle( textAngle );
|
||||||
|
|
||||||
if( aIsMirrored )
|
if( aIsMirrored )
|
||||||
|
|
Loading…
Reference in New Issue