Michael Olsen

Results 9 comments of Michael Olsen

https://github.com/cefsharp/CefSharp/blob/002edfb058ee5feafc705453ff7f868dd6bd2fa6/CefSharp.Wpf/Experimental/WpfIMEKeyboardHandler.cs#L86 is causing the web control to get focus during setup, which is not necessarily what one wants. Should it not get its focus organically without having to set it...

@angshuman-agarwal looking at the keyboard handler it looks like you already implemented Korean and Chinese according to the CEF code you linked, yes? I also notice that some of the...

@amaitland I'm also using it in my product, or rather will be once we migrate to the new version (we have a zoom crashing issue I need to fix first)....

> @mol Apologies for the delay. If i understood correctly this is what you were proposing? No worries. Yeah, for the part where the locally copied archive is extracted, but...

Thanks @amaitland. I've been researching this issue heavily the last week, and so far it has led me to create https://github.com/chromiumembedded/cef/issues/3860 Disabling off screen rendering in CefSharp's minimal example didn't...

> I suspect the cases it works are where the spell check falls back to hunspell as windows doesn't have the relevant language pack (last paragraph of https://issues.chromium.org/issues/40247740) That could...

> > There is a preference to disable the spell check service, might be worth trying https://source.chromium.org/chromium/chromium/src/+/main:components/spellcheck/browser/pref_names.h;drc=e3f856ae03dd1c131b435a16d71f36de3f0f44a3;l=32 to see if works as a temp workaround (I haven't tested yet) >...

Trying to get the Chromium `USE_BROWSER_SPELLCHECKER` build flag to work led me down a rabbit hole of changes. Instead, changing [UseBrowserSpellChecker](https://source.chromium.org/chromium/chromium/src/+/main:components/spellcheck/common/spellcheck_features.cc?q=symbol%3A%5Cbspellcheck%3A%3AUseBrowserSpellChecker%5Cb%20case%3Ayes) to return `false` did the same thing of disabling...

If you're on a version of Chromium prior to [two weeks ago](https://github.com/chromium/chromium/commit/3d50e54ab98b43049f29464002f78270ac5cbb3e), I also found a much easier way to get it working - without requiring a custom build. Just...