fix: High Contrast mode not working on Windows (#42859)

Closes https://github.com/electron/electron/issues/42609
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5324688
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5368321

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
trop[bot] 2024-07-10 16:48:24 -07:00 committed by GitHub
parent dc065dfa5a
commit 217e740791
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -424,6 +424,7 @@ void ElectronBrowserClient::OverrideWebkitPrefs(
renderer_prefs->can_accept_load_drops = false;
ui::NativeTheme* native_theme = ui::NativeTheme::GetInstanceForNativeUi();
prefs->in_forced_colors = native_theme->InForcedColorsMode();
prefs->preferred_color_scheme =
native_theme->ShouldUseDarkColors()
? blink::mojom::PreferredColorScheme::kDark