WebCord icon indicating copy to clipboard operation
WebCord copied to clipboard

Add spell checking toggle

Open dolwup opened this issue 3 years ago • 5 comments

WebCord uses the default chromium/electron spell checker which can be disabled in normal discord and in chromium by just right clicking on the message box. WebCord currently does not have the ability to disable the spell checker

dolwup avatar Aug 30 '22 14:08 dolwup

Another related question is how to enable spell checking for other languages, not English only?

AlexeyShaferov avatar Jan 13 '23 11:01 AlexeyShaferov

My temporary solution is put this line of code on line 371

mainWindow.webContents.session.setSpellCheckerEnabled(false);

K4zoku avatar Mar 16 '23 06:03 K4zoku

Another workaround is edit /home/pablo/.config/WebCord/Preferences with something like {"electron":{"media":{"device_id_salt":"A267D7E33C450DD743629AF815A81DFB"}},"spellcheck":{"dictionaries":["es-ES"],"dictionary":""}} (for Spanish (es-ES) in this case)

Potajito avatar Jul 23 '23 22:07 Potajito

Another workaround is edit /home/pablo/.config/WebCord/Preferences with something like {"electron":{"media":{"device_id_salt":"A267D7E33C450DD743629AF815A81DFB"}},"spellcheck":{"dictionaries":["es-ES"],"dictionary":""}} (for Spanish (es-ES) in this case)

You can also set "spellcheck":false to disable spellchecking entirely.

I still prefer a toggle, but this is the best workaround.

FelixFourcolor avatar Mar 13 '24 07:03 FelixFourcolor