From a0fbb79fd051001ba4178a123bd18b3c6b1fdc7d Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 8 Sep 2020 11:01:28 +0100 Subject: [PATCH] Tighten up the overbar spacing slightly. Fixes https://gitlab.com/kicad/code/kicad/issues/5544 --- common/gal/stroke_font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/gal/stroke_font.cpp b/common/gal/stroke_font.cpp index 33d6a79149..ed849533b9 100644 --- a/common/gal/stroke_font.cpp +++ b/common/gal/stroke_font.cpp @@ -36,7 +36,7 @@ using namespace KIGFX; const double STROKE_FONT::INTERLINE_PITCH_RATIO = 1.61; -const double STROKE_FONT::OVERBAR_POSITION_FACTOR = 1.40; +const double STROKE_FONT::OVERBAR_POSITION_FACTOR = 1.33; const double STROKE_FONT::BOLD_FACTOR = 1.3; const double STROKE_FONT::STROKE_FONT_SCALE = 1.0 / 21.0; const double STROKE_FONT::ITALIC_TILT = 1.0 / 8;