From 16302dfeee55a48f579b6c38434d61a99e0c0e08 Mon Sep 17 00:00:00 2001 From: lectroMathew Date: Sun, 10 Oct 2021 18:27:47 +0300 Subject: [PATCH] config hotfix --- src/GUI/GUIModule.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GUI/GUIModule.cpp b/src/GUI/GUIModule.cpp index c09b2ec..29e7524 100644 --- a/src/GUI/GUIModule.cpp +++ b/src/GUI/GUIModule.cpp @@ -66,8 +66,8 @@ void GUIModule::SetStandardFont(const float ratio) { ImFontConfig thinFontConfig; thinFontConfig.OversampleH = 3; - thinFontConfig.OversampleV = 1; - thinFontConfig.RasterizerMultiply = 2.0f; + thinFontConfig.OversampleV = 2; + thinFontConfig.RasterizerMultiply = 1.9f; ImGui::GetIO().Fonts->Clear(); ImGui::GetIO().Fonts->AddFontFromFileTTF((fontsPath + "DejaVuSans-ExtraLight.ttf").c_str(), 14.0f * ratio, &thinFontConfig);