From def3c47a1e27a48466830e4e688efa40aae94aba Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Mon, 10 Jan 2022 16:38:10 +0100 Subject: [PATCH] Disable spell checking (#601) --- electron/src/window.main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/electron/src/window.main.ts b/electron/src/window.main.ts index 97f9648bcd..e335586382 100644 --- a/electron/src/window.main.ts +++ b/electron/src/window.main.ts @@ -120,6 +120,7 @@ export class WindowMain { backgroundColor: "#fff", alwaysOnTop: this.enableAlwaysOnTop, webPreferences: { + spellcheck: false, nodeIntegration: true, backgroundThrottling: false, contextIsolation: false,