From 386b3d8ae300ac0bdbdb4f3e8bab04ffde2a2cf6 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Sat, 27 Jun 2015 14:02:04 -0700 Subject: [PATCH] Fix text overlay font rendering Use the same font size as used in TextRenderer to avoid scaling issues. --- interface/src/ui/overlays/TextOverlay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/ui/overlays/TextOverlay.h b/interface/src/ui/overlays/TextOverlay.h index db89f0b73d..de2597cf9a 100644 --- a/interface/src/ui/overlays/TextOverlay.h +++ b/interface/src/ui/overlays/TextOverlay.h @@ -23,7 +23,7 @@ const xColor DEFAULT_BACKGROUND_COLOR = { 0, 0, 0 }; const float DEFAULT_BACKGROUND_ALPHA = 0.7f; const int DEFAULT_MARGIN = 10; -const int DEFAULT_FONTSIZE = 11; +const int DEFAULT_FONTSIZE = 12; const int DEFAULT_FONT_WEIGHT = 50; class TextRenderer;