From 22585ca9199dedf0cb1913791c063e9d983e3056 Mon Sep 17 00:00:00 2001 From: Nicholas Guriev Date: Wed, 13 Nov 2019 09:52:44 +0300 Subject: [PATCH] Activate spellchecking on Linux --- Telegram/SourceFiles/settings/settings_advanced.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/settings/settings_advanced.cpp b/Telegram/SourceFiles/settings/settings_advanced.cpp index c29e7a92c..eb06cb7ba 100644 --- a/Telegram/SourceFiles/settings/settings_advanced.cpp +++ b/Telegram/SourceFiles/settings/settings_advanced.cpp @@ -32,6 +32,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "app.h" #include "styles/style_settings.h" +#ifndef TDESKTOP_DISABLE_SPELLCHECK +#include "spellcheck/platform/platform_spellcheck.h" +#endif // !TDESKTOP_DISABLE_SPELLCHECK + namespace Settings { bool HasConnectionType() { @@ -246,9 +250,9 @@ void SetupUpdate(not_null container) { bool HasSystemSpellchecker() { #ifdef TDESKTOP_DISABLE_SPELLCHECK return false; +#else + return Platform::Spellchecker::IsAvailable(); #endif // TDESKTOP_DISABLE_SPELLCHECK - return (Platform::IsWindows() && Platform::IsWindows8OrGreater()) - || Platform::IsMac(); } void SetupSpellchecker(