From 6bd700c5dca70a92bc4540082c9717fbe9fae763 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Tue, 28 Nov 2017 14:45:45 +0100 Subject: [PATCH] Larger font for the ruler tool Fixes: lp:1672040 * https://bugs.launchpad.net/kicad/+bug/1672040 --- common/preview_items/ruler_item.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/preview_items/ruler_item.cpp b/common/preview_items/ruler_item.cpp index 3ec3d51a43..8af0f100a2 100644 --- a/common/preview_items/ruler_item.cpp +++ b/common/preview_items/ruler_item.cpp @@ -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();