From 6f03efc6ba683143b1a9e3191c8377d7ad784875 Mon Sep 17 00:00:00 2001 From: Bert Timmerman Date: Sat, 22 Dec 2012 15:46:53 +0100 Subject: [PATCH 1/1] The rendered text now has the requested line Thickness, NOT half. Signed-off-by: Bert Timmerman --- src/hid/common/draw_helpers.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/hid/common/draw_helpers.c b/src/hid/common/draw_helpers.c index 685b614..087f010 100644 --- a/src/hid/common/draw_helpers.c +++ b/src/hid/common/draw_helpers.c @@ -63,7 +63,7 @@ common_draw_pcb_text (hidGC gc, TextType *Text, Coord min_line_width) newline.Point1.Y = SCALE_TEXT (newline.Point1.Y, Text->Scale); newline.Point2.X = SCALE_TEXT (newline.Point2.X + x, Text->Scale); newline.Point2.Y = SCALE_TEXT (newline.Point2.Y, Text->Scale); - newline.Thickness = SCALE_TEXT (newline.Thickness, Text->Scale / 2); + newline.Thickness = SCALE_TEXT (newline.Thickness, Text->Scale); if (newline.Thickness < min_line_width) newline.Thickness = min_line_width; -- 1.7.3.4