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:
parent
9e2fc9b07c
commit
a6e883327a
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue