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.