From 1c5a7e71cecb86a9682f825f6c20ecaeb445f32c Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 8 Aug 2021 22:57:26 -0400 Subject: add mono font, swap sans to lighter --- source/gui.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/gui.cpp') diff --git a/source/gui.cpp b/source/gui.cpp index 15beb90..fad451e 100644 --- a/source/gui.cpp +++ b/source/gui.cpp @@ -18,7 +18,8 @@ #include #include -ImFont *font = nullptr; +ImFont *fontSans = nullptr; +ImFont *fontMono = nullptr; static ImGuiIO *io = nullptr; static SDL_Window *window = nullptr; static decltype(SDL_GL_CreateContext(nullptr)) gl_context; @@ -49,7 +50,8 @@ bool guiInitialize() ImGui::CreateContext(); io = &ImGui::GetIO(); io->ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; - font = io->Fonts->AddFontFromFileTTF("fonts/Roboto-Medium.ttf", 20); + fontSans = io->Fonts->AddFontFromFileTTF("fonts/Roboto-Regular.ttf", 20); + fontMono = io->Fonts->AddFontFromFileTTF("fonts/RobotoMono-Regular.ttf", 20); ImGui::StyleColorsLight(); ImGui_ImplSDL2_InitForOpenGL(window, gl_context); -- cgit v1.2.3