From 659e61355ca7de1a4576f70e7f5c217f3769ce49 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 30 Mar 2022 15:49:59 +0100 Subject: [PATCH] Adjust text spacing a bit more so 6.0 boards are more likely to pass DRC. --- common/font/font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/font/font.cpp b/common/font/font.cpp index 40edaf4884..516d31b32b 100644 --- a/common/font/font.cpp +++ b/common/font/font.cpp @@ -118,7 +118,7 @@ void FONT::getLinePositions( const wxString& aText, const VECTOR2I& aPosition, aExtents.push_back( bBox ); if( i == 0 ) - height += ( aAttrs.m_Size.y * 1.21 ); // 1.21 is a fudge to match 6.0 positioning + height += ( aAttrs.m_Size.y * 1.17 ); // 1.17 is a fudge to match 6.0 positioning else height += interline; }