From 2feeb1b57ef08973504ebfc758b1a7c75106ffba Mon Sep 17 00:00:00 2001 From: Andreas Pfaller Date: Mon, 7 Jan 2013 20:51:50 +0100 Subject: [PATCH] Look/Fonts: Revert the recent font changes for topography labels This reverts commit 964c3a7485e5a59f291807e090474b826e9c67c8: An UI regression. Previously topography labels were immediately obvious simply by looking at the label because of the distinct rendering in italic. Now you have to scan the surrounding area to notice the different font size (if it even is sufficiently different). Even if italic is harder to read (a problem I don't notice for the labels) this additional scan time will invalidate the assumed advantages. --- src/Look/Fonts.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Look/Fonts.cpp b/src/Look/Fonts.cpp index 0ea531126..6470e798a 100644 --- a/src/Look/Fonts.cpp +++ b/src/Look/Fonts.cpp @@ -155,11 +155,11 @@ InitialiseLogFonts() // new font for map labels InitialiseLogfont(&log_map_label, GetStandardFontFace(), - UPixelScalar(font_height * 0.39)); + UPixelScalar(font_height * 0.39), false, true); // new font for map labels big/medium cities InitialiseLogfont(&log_map_label_important, GetStandardFontFace(), - UPixelScalar(font_height * 0.39)); + UPixelScalar(font_height * 0.39), false, true); // new font for map labels InitialiseLogfont(&log_map, GetStandardFontFace(), -- 2.11.4.GIT