Fix typos (paste issue?) in SCH_TEXT::FlipHJustify() and SCH_TEXT::Rotate90().

Fixes #15708
https://gitlab.com/kicad/code/kicad/-/issues/15708
This commit is contained in:
jean-pierre charras 2023-09-21 16:12:20 +02:00
parent 9e2fc9b07c
commit a6e883327a
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}