Minor
This commit is contained in:
parent
6c8a093de4
commit
234d35f15e
|
@ -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 || false
|
||||
};
|
||||
} catch(err) {
|
||||
return { [`theme-${this.settings.theme}`]: true };
|
||||
|
|
|
@ -384,7 +384,7 @@
|
|||
try {
|
||||
return {
|
||||
['platform-' + this.platform]: true,
|
||||
disableWindowsHighContrast: core.state.generalSettings?.risingDisableWindowsHighContrast
|
||||
disableWindowsHighContrast: core.state.generalSettings?.risingDisableWindowsHighContrast || false
|
||||
};
|
||||
} catch (err) {
|
||||
return {
|
||||
|
|
Loading…
Reference in New Issue