From 476a49b33b0539b825f53a51bfa7758558433ecc Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Thu, 27 Feb 2020 20:55:02 -0500 Subject: [PATCH] Set blendish font as soon as the font is loaded, in addition to at the beginning of each frame. --- src/window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window.cpp b/src/window.cpp index 1f6a62c6..b33b6454 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -298,6 +298,7 @@ Window::Window() { // Load default Blendish font uiFont = loadFont(asset::system("res/fonts/DejaVuSans.ttf")); + bndSetFont(uiFont->handle); } Window::~Window() {