Restore old rotation behavior for SCH_LABEL

Fixes https://gitlab.com/kicad/code/kicad/issues/9861
This commit is contained in:
Mikolaj Wielgus 2021-12-03 01:40:06 +01:00
parent d877f04198
commit 83162364e7
2 changed files with 14 additions and 0 deletions

View File

@ -927,6 +927,18 @@ const EDA_RECT SCH_LABEL::GetBoundingBox() const
}
void SCH_LABEL::Rotate( const wxPoint& aCenter )
{
wxPoint pt = GetTextPos();
RotatePoint( &pt, aCenter, 900 );
wxPoint offset = pt - GetTextPos();
Rotate90( false );
SetTextPos( GetTextPos() + offset );
}
wxString SCH_LABEL::GetSelectMenuText( EDA_UNITS aUnits ) const
{
return wxString::Format( _( "Label '%s'" ), ShortenedShownText() );

View File

@ -300,6 +300,8 @@ public:
const EDA_RECT GetBoundingBox() const override;
void Rotate( const wxPoint& aCenter ) override;
bool IsConnectable() const override { return true; }
bool CanConnect( const SCH_ITEM* aItem ) const override