CADSTAR Schematic: Fix orientation of symbol fields

This commit is contained in:
Roberto Fernandez Bautista 2021-04-09 20:45:12 +01:00
parent 9148542219
commit 45409ec314
1 changed files with 3 additions and 1 deletions

View File

@ -1696,7 +1696,9 @@ void CADSTAR_SCH_ARCHIVE_LOADER::loadSymbolFieldAttribute(
ALIGNMENT alignment = aCadstarAttrLoc.Alignment;
double textAngle = getAngleTenthDegree( aCadstarAttrLoc.OrientAngle ) - aComponentOrientationDeciDeg;
double textAngle = aComponentOrientationDeciDeg
- getAngleTenthDegree( aCadstarAttrLoc.OrientAngle );
long long cadstarAngle = getCadstarAngle( textAngle );
if( aIsMirrored )