disable spellchecker

This commit is contained in:
Nicolas Constant 2020-09-04 22:19:49 -04:00
parent 4e453903f2
commit 8f03d7f19e
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 31 additions and 4 deletions

View File

@ -1,4 +1,4 @@
const { app, Menu, BrowserWindow, shell } = require("electron");
const { app, Menu, MenuItem, BrowserWindow, shell } = require("electron");
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
@ -12,6 +12,9 @@ function createWindow() {
title: "Sengi",
backgroundColor: "#131925",
useContentSize: true,
webPreferences: {
spellcheck: false
}
// webPreferences: {
// contextIsolation: true,
// nodeIntegration: false,
@ -156,6 +159,30 @@ function createWindow() {
// when you should delete the corresponding element.
win = null;
});
// win.webContents.on('context-menu', (event, params) => {
// const menu = new Menu();
// // Add each spelling suggestion
// for (const suggestion of params.dictionarySuggestions) {
// menu.append(new MenuItem({
// label: suggestion,
// click: () => mainWindow.webContents.replaceMisspelling(suggestion)
// }));
// }
// // Allow users to add the misspelled word to the dictionary
// if (params.misspelledWord) {
// menu.append(
// new MenuItem({
// label: 'Add to dictionary',
// click: () => mainWindow.webContents.session.addWordToSpellCheckerDictionary(params.misspelledWord)
// }));
// }
// menu.popup();
// });
}
app.commandLine.appendSwitch("force-color-profile", "srgb");