From a6e883327a6cf0c9359dba26559bec156ab92748 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Thu, 21 Sep 2023 16:12:20 +0200 Subject: [PATCH] Fix typos (paste issue?) in SCH_TEXT::FlipHJustify() and SCH_TEXT::Rotate90(). Fixes #15708 https://gitlab.com/kicad/code/kicad/-/issues/15708 --- eeschema/sch_text.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/sch_text.cpp b/eeschema/sch_text.cpp index 98e09b44d5..ab3990b4af 100644 --- a/eeschema/sch_text.cpp +++ b/eeschema/sch_text.cpp @@ -79,7 +79,7 @@ VECTOR2I SCH_TEXT::GetSchematicTextOffset( const RENDER_SETTINGS* aSettings ) co void SCH_TEXT::FlipHJustify() { if( GetHorizJustify() == GR_TEXT_H_ALIGN_RIGHT ) - SetHorizJustify( GR_TEXT_H_ALIGN_RIGHT ); + SetHorizJustify( GR_TEXT_H_ALIGN_LEFT ); else if( GetHorizJustify() == GR_TEXT_H_ALIGN_LEFT ) SetHorizJustify( GR_TEXT_H_ALIGN_RIGHT ); } @@ -124,7 +124,7 @@ void SCH_TEXT::Rotate( const VECTOR2I& aCenter ) void SCH_TEXT::Rotate90( bool aClockwise ) { if( ( GetTextAngle() == ANGLE_HORIZONTAL && aClockwise ) - || ( GetTextAngle() == ANGLE_HORIZONTAL && !aClockwise ) ) + || ( GetTextAngle() == ANGLE_VERTICAL && !aClockwise ) ) { FlipHJustify(); }