From df4ac8640ef46cd6366eb71b50c237a20874f7f5 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Wed, 29 Dec 2021 15:01:06 -0600 Subject: [PATCH] Minor --- electron/Index.vue | 9 +++++++++ electron/Window.vue | 10 ++++++++++ 2 files changed, 19 insertions(+) diff --git a/electron/Index.vue b/electron/Index.vue index 61cebe4..6c391fb 100644 --- a/electron/Index.vue +++ b/electron/Index.vue @@ -491,6 +491,15 @@ // console.log('getThemeClassIndex', core.state.generalSettings?.risingDisableWindowsHighContrast); try { + // Hack! + if (process.platform === 'win32') { + if (core.state.generalSettings?.risingDisableWindowsHighContrast) { + document.querySelector('html').classList.add('disableWindowsHighContrast'); + } else { + document.querySelector('html').classList.remove('disableWindowsHighContrast'); + } + } + return { [`theme-${this.settings.theme}`]: true, colorblindMode: core.state.settings.risingColorblindMode, diff --git a/electron/Window.vue b/electron/Window.vue index 628e327..9ecf24c 100644 --- a/electron/Window.vue +++ b/electron/Window.vue @@ -48,6 +48,7 @@ import {GeneralSettings} from './common'; import { getSafeLanguages, updateSupportedLanguages } from './language'; import log from 'electron-log'; + import core from '../chat/core'; const browserWindow = remote.getCurrentWindow(); @@ -385,6 +386,15 @@ // console.log('getThemeClassWindow', this.settings?.risingDisableWindowsHighContrast); try { + // Hack! + if (process.platform === 'win32') { + if (this.settings?.risingDisableWindowsHighContrast) { + document.querySelector('html').classList.add('disableWindowsHighContrast'); + } else { + document.querySelector('html').classList.remove('disableWindowsHighContrast'); + } + } + return { ['platform-' + this.platform]: true, disableWindowsHighContrast: this.settings?.risingDisableWindowsHighContrast || false