Larger font for the ruler tool

Fixes: lp:1672040
* https://bugs.launchpad.net/kicad/+bug/1672040
This commit is contained in:
Maciej Suminski 2017-11-28 14:45:45 +01:00
parent 84ab71f8ec
commit 6bd700c5dc
1 changed files with 2 additions and 2 deletions

View File

@ -252,12 +252,12 @@ void RULER_ITEM::ViewDraw( int aLayer, KIGFX::VIEW* aView ) const
VECTOR2D rulerVec( end - origin );
// constant text size on screen
SetConstantGlyphHeight( gal, 12.0 );
SetConstantGlyphHeight( gal, 14.0 );
drawCursorStrings( aView, end, rulerVec );
// tick label size
SetConstantGlyphHeight( gal, 10.0 );
SetConstantGlyphHeight( gal, 12.0 );
// basic tick size
const double minorTickLen = 5.0 / gal.GetWorldScale();