Removed spellcheck setting for OS X 10.10/10.11 version.

This commit is contained in:
23rd 2019-11-06 10:08:58 +03:00
parent 1a4c1cbbf4
commit c867727e1c

View file

@ -244,6 +244,9 @@ void SetupUpdate(not_null<Ui::VerticalLayout*> container) {
}
bool HasSystemSpellchecker() {
#ifdef TDESKTOP_DISABLE_SPELLCHECK
return false;
#endif // TDESKTOP_DISABLE_SPELLCHECK
return (Platform::IsWindows() && Platform::IsWindows8OrGreater())
|| Platform::IsMac();
}