Merge pull request #5670 from gsouquet/fix/is-on-dark-theme
Update isUserOnDarkTheme to take use_system_theme in account
This commit is contained in:
commit
e30a0d6420
1 changed files with 8 additions and 4 deletions
|
@ -103,11 +103,15 @@ export default class UserMenu extends React.Component<IProps, IState> {
|
||||||
};
|
};
|
||||||
|
|
||||||
private isUserOnDarkTheme(): boolean {
|
private isUserOnDarkTheme(): boolean {
|
||||||
const theme = SettingsStore.getValue("theme");
|
if (SettingsStore.getValue("use_system_theme")) {
|
||||||
if (theme.startsWith("custom-")) {
|
return window.matchMedia("(prefers-color-scheme: dark)").matches;
|
||||||
return getCustomTheme(theme.substring("custom-".length)).is_dark;
|
} else {
|
||||||
|
const theme = SettingsStore.getValue("theme");
|
||||||
|
if (theme.startsWith("custom-")) {
|
||||||
|
return getCustomTheme(theme.substring("custom-".length)).is_dark;
|
||||||
|
}
|
||||||
|
return theme === "dark";
|
||||||
}
|
}
|
||||||
return theme === "dark";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private onProfileUpdate = async () => {
|
private onProfileUpdate = async () => {
|
||||||
|
|
Loading…
Reference in a new issue