diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index fc5678b96c..c9d8a96111 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -136,6 +136,13 @@ static void SetupDPIScale( float scale, ImFont*& cb_fixedWidth, ImFont*& cb_bigF { LoadFonts( scale, cb_fixedWidth, cb_bigFont, cb_smallFont ); +#ifdef __APPLE__ + // No need to upscale the style on macOS, but we need to downscale the fonts. + ImGuiIO& io = ImGui::GetIO(); + io.FontGlobalScale = 1.0f / dpiScale; + scale = 1.0f; +#endif + auto& style = ImGui::GetStyle(); style = ImGuiStyle(); ImGui::StyleColorsDark();