From 05588c2ee45fba52ad57591dc5cd32a6bccbbe6f Mon Sep 17 00:00:00 2001 From: ThorstenB Date: Tue, 1 May 2012 11:44:52 +0200 Subject: [PATCH] Adapt font size behaviour to original plib font. Original plib 'Helvetica 12' reported point size "13". Stick with this to keep backward compatibility of GUI layouts. --- src/GUI/fonts.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/fonts.cxx b/src/GUI/fonts.cxx index c9d84ecb9..6b7b858fd 100644 --- a/src/GUI/fonts.cxx +++ b/src/GUI/fonts.cxx @@ -837,4 +837,4 @@ static fntBitmapFont fntHelvetica12(FontHelvetica12.Characters, 1, puFont FONT_HELVETICA_14(&fntHelvetica14, 14, 0); puFont FONT_SANS_12B(&fntSans12B, 12, 0); -puFont FONT_HELVETICA_12(&fntHelvetica12, 12, 0); +puFont FONT_HELVETICA_12(&fntHelvetica12, 13 /*[sic!]*/, 0); /* Original plib Helvetica 12 font also reported size 13, instead of 12 */