aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 0756a05eb..36e6efd4f 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -27,7 +27,7 @@ import { sleep } from '../helpers/async-helpers';
27const debug = require('debug')('Ferdi:AppStore'); 27const debug = require('debug')('Ferdi:AppStore');
28 28
29const { 29const {
30 app, systemPreferences, screen, powerMonitor, 30 app, nativeTheme, screen, powerMonitor,
31} = remote; 31} = remote;
32 32
33const mainWindow = remote.getCurrentWindow(); 33const mainWindow = remote.getCurrentWindow();
@@ -185,7 +185,7 @@ export default class AppStore extends Store {
185 this._healthCheck(); 185 this._healthCheck();
186 }, 1000); 186 }, 1000);
187 187
188 this.isSystemDarkModeEnabled = systemPreferences.isDarkMode(); 188 this.isSystemDarkModeEnabled = nativeTheme.shouldUseDarkColors;
189 189
190 onVisibilityChange((isVisible) => { 190 onVisibilityChange((isVisible) => {
191 this.isFocused = isVisible; 191 this.isFocused = isVisible;