aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.js
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-06-05 16:28:52 +0530
committerLibravatar GitHub <noreply@github.com>2021-06-05 12:58:52 +0200
commit079765bad8a577d140166098e8dd0b7fe0660e4e (patch)
tree4a157a1e5fd0eb3b6a2ce71229a0aed7165dddb3 /src/stores/ServicesStore.js
parentRemoved hardcoded strings and reused constants defined in config.js (#1499) (diff)
downloadferdium-app-079765bad8a577d140166098e8dd0b7fe0660e4e.tar.gz
ferdium-app-079765bad8a577d140166098e8dd0b7fe0660e4e.tar.zst
ferdium-app-079765bad8a577d140166098e8dd0b7fe0660e4e.zip
Added ability to turn off notifications for clipboard events generated by context menu actions (#1494)
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 11915bc44..48b128966 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -134,6 +134,11 @@ export default class ServicesStore extends Store {
134 () => this.stores.settings.app.searchEngine, 134 () => this.stores.settings.app.searchEngine,
135 () => this._shareSettingsWithServiceProcess(), 135 () => this._shareSettingsWithServiceProcess(),
136 ); 136 );
137
138 reaction(
139 () => this.stores.settings.app.clipboardNotifications,
140 () => this._shareSettingsWithServiceProcess(),
141 );
137 } 142 }
138 143
139 initialize() { 144 initialize() {