From bc67b790235c9d342fe9f10c78838b3cdebcc40f Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 17 Mar 2021 00:07:08 +0400 Subject: [PATCH] Beta version 2.6.4: 110% UI scale on macOS Retina. --- Telegram/SourceFiles/core/changelogs.cpp | 2 ++ Telegram/SourceFiles/core/sandbox.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/core/changelogs.cpp b/Telegram/SourceFiles/core/changelogs.cpp index 82b4a3b8d3..9278c6af28 100644 --- a/Telegram/SourceFiles/core/changelogs.cpp +++ b/Telegram/SourceFiles/core/changelogs.cpp @@ -130,6 +130,8 @@ std::map BetaLogs() { { 2006004, "- Fix freeze in voice chats.\n" + + "- Make default interface scale 110% on macOS Retina screens.\n" }, }; }; diff --git a/Telegram/SourceFiles/core/sandbox.cpp b/Telegram/SourceFiles/core/sandbox.cpp index 105c9aa9ff..299f1084c5 100644 --- a/Telegram/SourceFiles/core/sandbox.cpp +++ b/Telegram/SourceFiles/core/sandbox.cpp @@ -210,7 +210,7 @@ void Sandbox::setupScreenScale() { } style::SetDevicePixelRatio(int(ratio)); if (Platform::IsMac() && ratio == 2.) { - cSetScreenScale(120); // 120% for Retina screens by default. + cSetScreenScale(110); // 110% for Retina screens by default. } else { cSetScreenScale(style::kScaleDefault); }