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