Default to `system` `theme-setting`

This commit is contained in:
Fedor Indutny 2021-12-20 17:58:21 +01:00 committed by GitHub
parent 67339001a8
commit b08691b35b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -258,11 +258,7 @@ export function createIPCEvents(
window.storage.get('auto-download-update', true),
setAutoDownloadUpdate: value =>
window.storage.put('auto-download-update', value),
getThemeSetting: () =>
window.storage.get(
'theme-setting',
window.platform === 'darwin' ? 'system' : 'light'
),
getThemeSetting: () => window.storage.get('theme-setting', 'system'),
setThemeSetting: value => {
const promise = window.storage.put('theme-setting', value);
themeChanged();