Beta version 2.6.4: 110% UI scale on macOS Retina.

This commit is contained in:
John Preston 2021-03-17 00:07:08 +04:00
parent 528c98af67
commit bc67b79023
2 changed files with 3 additions and 1 deletions

View File

@ -130,6 +130,8 @@ std::map<int, const char*> BetaLogs() {
{
2006004,
"- Fix freeze in voice chats.\n"
"- Make default interface scale 110% on macOS Retina screens.\n"
},
};
};

View File

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