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:
commit
4fa14063a6
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ bool gSemiboldFontIsBold = false;
|
||||||
#ifdef DESKTOP_APP_USE_PACKAGED_FONTS
|
#ifdef DESKTOP_APP_USE_PACKAGED_FONTS
|
||||||
bool gUseSystemFont = true;
|
bool gUseSystemFont = true;
|
||||||
#else
|
#else
|
||||||
bool gUseSystemFont = false;
|
bool gUseSystemFont = Platform::IsLinux();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool gUseOriginalMetrics = false;
|
bool gUseOriginalMetrics = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue