From 1e149704b851a5ebd53f2702401b6cb9f6f69e56 Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Tue, 11 Jul 2023 03:55:36 +0500 Subject: [PATCH] LTspice import: Fix M270 symbol orientation. --- eeschema/sch_plugins/ltspice/ltspice_sch_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_plugins/ltspice/ltspice_sch_parser.cpp b/eeschema/sch_plugins/ltspice/ltspice_sch_parser.cpp index 1eeeac57a7..d0cd0e3532 100644 --- a/eeschema/sch_plugins/ltspice/ltspice_sch_parser.cpp +++ b/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 ); } }