mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 23:35:31 +00:00
Mirror pad numbers when appropriate.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/20459
This commit is contained in:
parent
659c783e5e
commit
151cb01795
@ -138,6 +138,9 @@ public:
|
||||
virtual void SetPageSettings( const PAGE_INFO& aPageSettings ) { m_pageInfo = aPageSettings; }
|
||||
PAGE_INFO& PageSettings() { return m_pageInfo; }
|
||||
|
||||
void SetPlotMirrored( bool aMirror ) { m_plotMirror = aMirror; };
|
||||
bool GetPlotMirrored() const { return m_plotMirror; }
|
||||
|
||||
/**
|
||||
* Set the line width for the next drawing.
|
||||
*
|
||||
|
@ -121,6 +121,8 @@ void BRDITEMS_PLOTTER::PlotPadNumber( const PAD* aPad, const COLOR4D& aColor )
|
||||
|
||||
TEXT_ATTRIBUTES textAttrs;
|
||||
|
||||
textAttrs.m_Mirrored = m_plotter->GetPlotMirrored();
|
||||
|
||||
if( padsize.x < ( padsize.y * 0.95 ) )
|
||||
{
|
||||
textAttrs.m_Angle = ANGLE_90;
|
||||
|
Loading…
Reference in New Issue
Block a user