mirror of https://github.com/procxx/kepka.git
Activate spellchecking on Linux
This commit is contained in:
parent
8a888051e5
commit
22585ca919
|
@ -32,6 +32,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "app.h"
|
#include "app.h"
|
||||||
#include "styles/style_settings.h"
|
#include "styles/style_settings.h"
|
||||||
|
|
||||||
|
#ifndef TDESKTOP_DISABLE_SPELLCHECK
|
||||||
|
#include "spellcheck/platform/platform_spellcheck.h"
|
||||||
|
#endif // !TDESKTOP_DISABLE_SPELLCHECK
|
||||||
|
|
||||||
namespace Settings {
|
namespace Settings {
|
||||||
|
|
||||||
bool HasConnectionType() {
|
bool HasConnectionType() {
|
||||||
|
@ -246,9 +250,9 @@ void SetupUpdate(not_null<Ui::VerticalLayout*> container) {
|
||||||
bool HasSystemSpellchecker() {
|
bool HasSystemSpellchecker() {
|
||||||
#ifdef TDESKTOP_DISABLE_SPELLCHECK
|
#ifdef TDESKTOP_DISABLE_SPELLCHECK
|
||||||
return false;
|
return false;
|
||||||
|
#else
|
||||||
|
return Platform::Spellchecker::IsAvailable();
|
||||||
#endif // TDESKTOP_DISABLE_SPELLCHECK
|
#endif // TDESKTOP_DISABLE_SPELLCHECK
|
||||||
return (Platform::IsWindows() && Platform::IsWindows8OrGreater())
|
|
||||||
|| Platform::IsMac();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SetupSpellchecker(
|
void SetupSpellchecker(
|
||||||
|
|
Loading…
Reference in New Issue