From 0f7a42258c7b90a8dc5f2d3be47238013a436784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Tue, 2 Mar 2021 14:53:04 +0100 Subject: [PATCH] Add a comment Co-authored-by: J. Ryan Stinnett --- 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 9453982f3..ab45fd7d9 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 { + // Electron uses OS spell checking on macOS, so no need for in-app options if (isMac) return false; return true; }