From 7dc3ad22873e08de11172757066bb2b3a27f7203 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sat, 8 Jul 2017 00:44:31 +0200 Subject: Fix T51889: new file or load factory settings results in broken UI. Fix some cases that still assumed there to be a global DPI, instead of a per window DPI that needs to be set before reading U.dpi. --- source/blender/blenfont/intern/blf.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'source/blender/blenfont/intern/blf.c') diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c index 132a0ec3808..5bd62980b6d 100644 --- a/source/blender/blenfont/intern/blf.c +++ b/source/blender/blenfont/intern/blf.c @@ -96,15 +96,16 @@ static FontBLF *blf_get(int fontid) return NULL; } -int BLF_init(int points, int dpi) +int BLF_init(void) { int i; for (i = 0; i < BLF_MAX_FONT; i++) global_font[i] = NULL; - global_font_points = points; - global_font_dpi = dpi; + global_font_points = 11; + global_font_dpi = 72; + return blf_font_init(); } -- cgit v1.2.3