Restore old rotation behavior for SCH_LABEL
Fixes https://gitlab.com/kicad/code/kicad/issues/9861
This commit is contained in:
parent
d877f04198
commit
83162364e7
|
@ -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() );
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue