aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-17 21:48:38 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-17 21:48:38 +0200
commitc44cb8dc2203262b4ad52210adf40e0d022671eb (patch)
tree8a3a15a161a048f06203b9ee66763df63ab3c3ba /src/stores/ServicesStore.js
parentMerge pull request #124 from getferdi/l10n_develop (diff)
downloadferdium-app-c44cb8dc2203262b4ad52210adf40e0d022671eb.tar.gz
ferdium-app-c44cb8dc2203262b4ad52210adf40e0d022671eb.tar.zst
ferdium-app-c44cb8dc2203262b4ad52210adf40e0d022671eb.zip
Add toggle to disable universal dark mode
Diffstat (limited to 'src/stores/ServicesStore.js')
-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 9e952a6b1..185a6f0ae 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -112,6 +112,11 @@ export default class ServicesStore extends Store {
112 () => this.stores.settings.app.darkMode, 112 () => this.stores.settings.app.darkMode,
113 () => this._shareSettingsWithServiceProcess(), 113 () => this._shareSettingsWithServiceProcess(),
114 ); 114 );
115
116 reaction(
117 () => this.stores.settings.app.universalDarkMode,
118 () => this._shareSettingsWithServiceProcess(),
119 );
115 } 120 }
116 121
117 @computed get all() { 122 @computed get all() {