Commit 25c19fb6 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #5348 from DonLakeFlyer/FontSize

Don't drop point-size on Linux
parents 50d612da 61117078
......@@ -146,15 +146,7 @@ Item {
baseSize = 14;
}
} else {
//-- Mac OS
if(ScreenToolsController.isMacOS)
baseSize = _defaultFont.font.pointSize;
//-- Linux
else if(ScreenToolsController.isLinux)
baseSize = _defaultFont.font.pointSize - 3.25;
//-- Windows
else
baseSize = _defaultFont.font.pointSize;
baseSize = _defaultFont.font.pointSize;
}
_appFontPointSizeFact.value = baseSize
//-- Release build doesn't get signal
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment