Make RULER_ITEM generic and ensure text mirroring is disabled

This commit is contained in:
Jon Evans 2017-09-11 22:49:05 -04:00 committed by jean-pierre charras
parent b6298a0a41
commit 8182369c64
1 changed files with 3 additions and 1 deletions

View File

@ -232,7 +232,7 @@ void RULER_ITEM::ViewGetLayers( int aLayers[], int& aCount ) const
void RULER_ITEM::ViewDraw( int aLayer, KIGFX::VIEW* aView ) const void RULER_ITEM::ViewDraw( int aLayer, KIGFX::VIEW* aView ) const
{ {
auto& gal = *aView->GetGAL(); auto& gal = *aView->GetGAL();
auto rs = static_cast<KIGFX::PCB_RENDER_SETTINGS*>( aView->GetPainter()->GetSettings() ); auto rs = static_cast<KIGFX::RENDER_SETTINGS*>( aView->GetPainter()->GetSettings() );
const auto origin = m_geomMgr.GetOrigin(); const auto origin = m_geomMgr.GetOrigin();
const auto end = m_geomMgr.GetEnd(); const auto end = m_geomMgr.GetEnd();
@ -240,6 +240,8 @@ void RULER_ITEM::ViewDraw( int aLayer, KIGFX::VIEW* aView ) const
gal.SetLineWidth( 1.0 ); gal.SetLineWidth( 1.0 );
gal.SetIsStroke( true ); gal.SetIsStroke( true );
gal.SetIsFill( false ); gal.SetIsFill( false );
gal.SetTextMirrored( false );
gal.SetStrokeColor( rs->GetLayerColor( LAYER_AUX_ITEMS ) ); gal.SetStrokeColor( rs->GetLayerColor( LAYER_AUX_ITEMS ) );
gal.ResetTextAttributes(); gal.ResetTextAttributes();