Browse Source

LTspice import: Fix M270 symbol orientation.

newinvert
Alex Shvartzkop 2 years ago
parent
commit
1e149704b8
  1. 2
      eeschema/sch_plugins/ltspice/ltspice_sch_parser.cpp

2
eeschema/sch_plugins/ltspice/ltspice_sch_parser.cpp

@ -439,7 +439,7 @@ void LTSPICE_SCH_PARSER::RotateMirror( LTSPICE_SCHEMATIC::LT_SYMBOL& aLTSymbol,
else if( aLTSymbol.SymbolOrientation == LTSPICE_SCHEMATIC::ORIENTATION::M270 )
{
aSchSymbol->SetOrientation( SYM_MIRROR_Y );
aSchSymbol->SetOrientation( SYM_ROTATE_COUNTERCLOCKWISE );
aSchSymbol->SetOrientation( SYM_ROTATE_CLOCKWISE );
}
}

Loading…
Cancel
Save