From 0bcc4befa14aed10702533dd57729e44009da014 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Fri, 17 Jan 2020 15:50:00 +0400 Subject: [PATCH] Change fc-custom.conf condition to DESKTOP_APP_USE_PACKAGED --- Telegram/SourceFiles/platform/linux/specific_linux.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/platform/linux/specific_linux.cpp b/Telegram/SourceFiles/platform/linux/specific_linux.cpp index 5a67acaca..b5dcc8f45 100644 --- a/Telegram/SourceFiles/platform/linux/specific_linux.cpp +++ b/Telegram/SourceFiles/platform/linux/specific_linux.cpp @@ -49,7 +49,7 @@ bool RunShellCommand(const QByteArray &command) { } void FallbackFontConfig() { -#ifndef TDESKTOP_DISABLE_DESKTOP_FILE_GENERATION +#ifndef DESKTOP_APP_USE_PACKAGED const auto custom = cWorkingDir() + "tdata/fc-custom-1.conf"; const auto finish = gsl::finally([&] { if (QFile(custom).exists()) { @@ -84,7 +84,7 @@ void FallbackFontConfig() { } QFile(":/fc/fc-custom.conf").copy(custom); -#endif // TDESKTOP_DISABLE_DESKTOP_FILE_GENERATION +#endif // !DESKTOP_APP_USE_PACKAGED } } // namespace