From 4e4a9968a3ab4b924972417bdbe1ba60ba1fd6bf Mon Sep 17 00:00:00 2001 From: jules Date: Thu, 19 Mar 2015 15:40:48 +0000 Subject: [PATCH] Reverted my typo that had changed the minimum font horizontal scale from the old default 0.7 --- modules/juce_graphics/fonts/juce_Font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_graphics/fonts/juce_Font.cpp b/modules/juce_graphics/fonts/juce_Font.cpp index 1a4adf598c..d1c3d5c565 100644 --- a/modules/juce_graphics/fonts/juce_Font.cpp +++ b/modules/juce_graphics/fonts/juce_Font.cpp @@ -30,7 +30,7 @@ namespace FontValues } const float defaultFontHeight = 14.0f; - float minimumHorizontalScale = 1.0f; + float minimumHorizontalScale = 0.7f; String fallbackFont; String fallbackFontStyle; }