aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-09-23 20:15:23 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-09-23 20:15:23 +0200
commit1eb148d121dbcbe1e54085a9fb897fe7ac1529b7 (patch)
tree14d70b0957ab1ea7ae7ff6df1f4b387ab35175d3 /src/stores
parentSetup repo-sync workflow (diff)
downloadferdium-app-1eb148d121dbcbe1e54085a9fb897fe7ac1529b7.tar.gz
ferdium-app-1eb148d121dbcbe1e54085a9fb897fe7ac1529b7.tar.zst
ferdium-app-1eb148d121dbcbe1e54085a9fb897fe7ac1529b7.zip
Add darkreader for universal darkmode
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/ServicesStore.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 45350d8f5..3173004d4 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -96,6 +96,11 @@ export default class ServicesStore extends Store {
96 () => this.stores.settings.app.spellcheckerLanguage, 96 () => this.stores.settings.app.spellcheckerLanguage,
97 () => this._shareSettingsWithServiceProcess(), 97 () => this._shareSettingsWithServiceProcess(),
98 ); 98 );
99
100 reaction(
101 () => this.stores.settings.app.darkMode,
102 () => this._shareSettingsWithServiceProcess(),
103 );
99 } 104 }
100 105
101 @computed get all() { 106 @computed get all() {