Index: source/blender/editors/space_info/textview.c =================================================================== --- source/blender/editors/space_info/textview.c (revision 45673) +++ source/blender/editors/space_info/textview.c (working copy) @@ -36,8 +36,8 @@ #include "BLI_math.h" #include "BLI_utildefines.h" +#include "UI_interface.h" - #include "BIF_gl.h" #include "BIF_glutil.h" @@ -47,7 +47,7 @@ static void console_font_begin(TextViewContext *sc) { - BLF_size(blf_mono_font, sc->lheight - 2, 72); + BLF_size(blf_mono_font, sc->lheight - 2, U.dpi); } typedef struct ConsoleDrawContext { Index: source/blender/editors/interface/interface_style.c =================================================================== --- source/blender/editors/interface/interface_style.c (revision 45673) +++ source/blender/editors/interface/interface_style.c (working copy) @@ -378,13 +378,13 @@ if (blf_mono_font == -1) blf_mono_font = BLF_load_mem_unique("monospace", (unsigned char *)datatoc_bmonofont_ttf, datatoc_bmonofont_ttf_size); - BLF_size(blf_mono_font, 12, 72); + BLF_size(blf_mono_font, 12, U.dpi); /* second for rendering else we get threading problems */ if (blf_mono_font_render == -1) blf_mono_font_render = BLF_load_mem_unique("monospace", (unsigned char *)datatoc_bmonofont_ttf, datatoc_bmonofont_ttf_size); - BLF_size(blf_mono_font_render, 12, 72); + BLF_size(blf_mono_font_render, 12, U.dpi); } void uiStyleFontSet(uiFontStyle *fs)