diff --git a/electron/Index.vue b/electron/Index.vue index 9cdeb87..3430c04 100644 --- a/electron/Index.vue +++ b/electron/Index.vue @@ -490,7 +490,7 @@ return { [`theme-${this.settings.theme}`]: true, colorblindMode: core.state.settings.risingColorblindMode, - disableWindowsHighContrast: core.state.generalSettings.risingDisableWindowsHighContrast + disableWindowsHighContrast: core.state.generalSettings?.risingDisableWindowsHighContrast }; } catch(err) { return { [`theme-${this.settings.theme}`]: true }; diff --git a/electron/Window.vue b/electron/Window.vue index cee7106..c6885bd 100644 --- a/electron/Window.vue +++ b/electron/Window.vue @@ -384,7 +384,7 @@ try { return { ['platform-' + this.platform]: true, - disableWindowsHighContrast: core.state.generalSettings.risingDisableWindowsHighContrast + disableWindowsHighContrast: core.state.generalSettings?.risingDisableWindowsHighContrast }; } catch (err) { return {