Re: Spell check no longer working on Windows
As well as showing my frustration at my inability to activate the spell check. I want to share that it has already been solved and although it may be painful for me to accept how stupid I was, I am going to say it:
The solution given to deactivate the WinUseBrowserSpellChecker option is correct, if it works, the problem is that I was deactivating it wrong, since I did this:
Should I have done this:
And it was amaitland that made me notice it.
Thank you all for your prompt response to my request for help.
The solution given to deactivate the WinUseBrowserSpellChecker option is correct, if it works, the problem is that I was deactivating it wrong, since I did this:
- Code: Select all
command_line->AppendSwitch("-disable-features=WinUseBrowserSpellChecker");
Should I have done this:
- Code: Select all
command_line->AppendSwitchWithValue("-disable-features", "WinUseBrowserSpellChecker");
And it was amaitland that made me notice it.
Thank you all for your prompt response to my request for help.