From 7cfcdee0533c442d3c139f9096acf21cc6334c82 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 17 Aug 2018 18:45:04 +0200 Subject: [PATCH] Slightly reduce icons size. --- profiler/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 30397760..5ec94fe8 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -115,7 +115,7 @@ int main( int argc, char** argv ) ImGuiIO& io = ImGui::GetIO(); io.Fonts->AddFontFromMemoryCompressedTTF( tracy::Arimo_compressed_data, tracy::Arimo_compressed_size, 15.0f * dpiScale, nullptr, rangesBasic ); - io.Fonts->AddFontFromMemoryCompressedTTF( tracy::FontAwesomeSolid_compressed_data, tracy::FontAwesomeSolid_compressed_size, 15.0f * dpiScale, &configMerge, rangesIcons ); + io.Fonts->AddFontFromMemoryCompressedTTF( tracy::FontAwesomeSolid_compressed_data, tracy::FontAwesomeSolid_compressed_size, 14.0f * dpiScale, &configMerge, rangesIcons ); auto fixedWidth = io.Fonts->AddFontDefault(); ImGui::StyleColorsDark();