From f0a5d2ed84eff7c367e16c81c03ae11a3a112d69 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Sat, 26 Dec 2020 00:30:29 +0400 Subject: [PATCH] Use system font on Linux by default --- Telegram/SourceFiles/kotato/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/kotato/settings.cpp b/Telegram/SourceFiles/kotato/settings.cpp index 6fccc44b6..3ec270c92 100644 --- a/Telegram/SourceFiles/kotato/settings.cpp +++ b/Telegram/SourceFiles/kotato/settings.cpp @@ -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;