Merge pull request #131 from ilya-fedin/system-font-on-linux-by-default

Use system font on Linux by default
This commit is contained in:
Eric Kotato 2020-12-25 23:39:16 +03:00 committed by GitHub
commit 4fa14063a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ bool gSemiboldFontIsBold = false;
#ifdef DESKTOP_APP_USE_PACKAGED_FONTS
bool gUseSystemFont = true;
#else
bool gUseSystemFont = false;
bool gUseSystemFont = Platform::IsLinux();
#endif
bool gUseOriginalMetrics = false;