Minor
This commit is contained in:
parent
6c8a093de4
commit
234d35f15e
|
@ -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 };
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue