This commit is contained in:
Mr. Stallion 2021-12-29 14:24:57 -06:00
parent 0b2aca9cca
commit 6c8a093de4
2 changed files with 2 additions and 2 deletions

View File

@ -490,7 +490,7 @@
return { return {
[`theme-${this.settings.theme}`]: true, [`theme-${this.settings.theme}`]: true,
colorblindMode: core.state.settings.risingColorblindMode, colorblindMode: core.state.settings.risingColorblindMode,
disableWindowsHighContrast: core.state.generalSettings.risingDisableWindowsHighContrast disableWindowsHighContrast: core.state.generalSettings?.risingDisableWindowsHighContrast
}; };
} catch(err) { } catch(err) {
return { [`theme-${this.settings.theme}`]: true }; return { [`theme-${this.settings.theme}`]: true };

View File

@ -384,7 +384,7 @@
try { try {
return { return {
['platform-' + this.platform]: true, ['platform-' + this.platform]: true,
disableWindowsHighContrast: core.state.generalSettings.risingDisableWindowsHighContrast disableWindowsHighContrast: core.state.generalSettings?.risingDisableWindowsHighContrast
}; };
} catch (err) { } catch (err) {
return { return {