diff --git a/src/ui/ImGuiContext.cpp b/src/ui/ImGuiContext.cpp index 4939443..8563b16 100644 --- a/src/ui/ImGuiContext.cpp +++ b/src/ui/ImGuiContext.cpp @@ -106,7 +106,7 @@ bool ImGuiContext::Initialize(const std::string& windowTitle, int width, int hei const char* tryPaths[] = { fontPath0.c_str(), fontPath1.c_str() }; bool loaded = false; for (const char* p : tryPaths) { - ImFont* f = io.Fonts->AddFontFromFileTTF(p, 16.0f, &fontConfig); + ImFont* f = io.Fonts->AddFontFromFileTTF(p, 15.0f, &fontConfig); if (f) { LOG_INFO(std::string("Loaded Inter font from ") + p); loaded = true;