From 9ccc75414355ca1cff4b7e976dd86e864cac6e8e Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 2 Mar 2024 00:30:50 +0100 Subject: [PATCH] Fix macos, --- 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 e539594a..30eb9aaa 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -136,7 +136,7 @@ static void RunOnMainThread( const std::function& cb, bool forceDelay = static void SetupDPIScale() { - const auto scale = dpiScale * userScale; + auto scale = dpiScale * userScale; LoadFonts( scale ); if( view ) view->UpdateFont( s_fixedWidth, s_smallFont, s_bigFont );