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); }