From 5f15ee4ea579d99235c5f4fad3a1760f716650fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Thu, 18 Feb 2021 19:05:40 +0100 Subject: [PATCH] Mark macOS as false MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/vector/platform/ElectronPlatform.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vector/platform/ElectronPlatform.tsx b/src/vector/platform/ElectronPlatform.tsx index c80d926d2..61df84975 100644 --- a/src/vector/platform/ElectronPlatform.tsx +++ b/src/vector/platform/ElectronPlatform.tsx @@ -328,6 +328,7 @@ export default class ElectronPlatform extends VectorBasePlatform { * spell-checking, otherwise false. */ supportsMultiLanguageSpellCheck(): boolean { + if (isMac) return false; return true; }