Skip to content
Snippets Groups Projects
Commit 1bc0cdf7 authored by SeeLook's avatar SeeLook :musical_note:
Browse files

[MacOs] Fixed global font size scale

- simply adjust scale factor for Mac separately
parent 9c72e7d3
No related branches found
No related tags found
No related merge requests found
Pipeline #2667 failed
......@@ -349,6 +349,8 @@ qreal TnootkaQML::lightness(const QColor& c) const {
int TnootkaQML::fontSize() {
#if defined (Q_OS_ANDROID)
return Tmtr::fingerPixels() * 0.3 * GLOB->guiScale();
#elif defined (Q_OS_MAC)
return Tmtr::fingerPixels() * 0.7 * GLOB->guiScale();
#else
return Tmtr::fingerPixels() * 0.45 * GLOB->guiScale();
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment