This commit is contained in:
Mr. Stallion 2021-12-29 14:27:44 -06:00
parent 6c8a093de4
commit 234d35f15e
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 || false
}; };
} 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 || false
}; };
} catch (err) { } catch (err) {
return { return {