aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.js b/src/config.js
index 5c184b65a..57ae2aae1 100644
--- a/src/config.js
+++ b/src/config.js
@@ -6,7 +6,7 @@ import ms from 'ms';
6import { asarPath } from './helpers/asar-helpers'; 6import { asarPath } from './helpers/asar-helpers';
7 7
8const app = process.type === 'renderer' ? electron.remote.app : electron.app; 8const app = process.type === 'renderer' ? electron.remote.app : electron.app;
9const systemPreferences = process.type === 'renderer' ? electron.remote.systemPreferences : electron.systemPreferences; 9const nativeTheme = process.type === 'renderer' ? electron.remote.nativeTheme : electron.nativeTheme;
10 10
11export const CHECK_INTERVAL = ms('1h'); // How often should we perform checks 11export const CHECK_INTERVAL = ms('1h'); // How often should we perform checks
12 12
@@ -53,7 +53,7 @@ export const DEFAULT_APP_SETTINGS = {
53 showMessageBadgeWhenMuted: true, 53 showMessageBadgeWhenMuted: true,
54 enableSpellchecking: true, 54 enableSpellchecking: true,
55 spellcheckerLanguage: 'en-us', 55 spellcheckerLanguage: 'en-us',
56 darkMode: process.platform === 'darwin' ? systemPreferences.isDarkMode() : false, // We can't use refs from `./environment` at this time 56 darkMode: process.platform === 'darwin' ? nativeTheme.shouldUseDarkColors : false, // We can't use refs from `./environment` at this time
57 locale: '', 57 locale: '',
58 fallbackLocale: 'en-US', 58 fallbackLocale: 'en-US',
59 beta: false, 59 beta: false,