aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
m---------recipes0
-rw-r--r--src/i18n/locales/defaultMessages.json2
m---------src/internal-server0
-rw-r--r--src/stores/ServicesStore.js2
-rw-r--r--src/webview/recipe.js2
5 files changed, 3 insertions, 3 deletions
diff --git a/recipes b/recipes
Subproject 3dcb305ffb706a7604cdfbadf7f2d2e236cb223 Subproject dbc43bfd258d4d7db25b36895a1bfc202361173
diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json
index 22953ffb0..62203d5e8 100644
--- a/src/i18n/locales/defaultMessages.json
+++ b/src/i18n/locales/defaultMessages.json
@@ -4318,7 +4318,7 @@
4318 } 4318 }
4319 }, 4319 },
4320 { 4320 {
4321 "defaultMessage": "!!!Enable adaptable Dark Mode", 4321 "defaultMessage": "!!!Synchronize dark mode with my Mac's dark mode setting",
4322 "end": { 4322 "end": {
4323 "column": 3, 4323 "column": 3,
4324 "line": 108 4324 "line": 108
diff --git a/src/internal-server b/src/internal-server
Subproject c39e8b45a51387f24d30e62a170681fc3422ad0 Subproject 65d1468901b7394c95e510c5aed1a23c22f0f71
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 731305141..fda18b514 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -774,7 +774,7 @@ export default class ServicesStore extends Store {
774 _shareSettingsWithServiceProcess() { 774 _shareSettingsWithServiceProcess() {
775 const settings = { 775 const settings = {
776 ...this.stores.settings.app, 776 ...this.stores.settings.app,
777 isDarkThemeActive: this.stores.ui.isDarkThemeActive 777 isDarkThemeActive: this.stores.ui.isDarkThemeActive,
778 }; 778 };
779 this.actions.service.sendIPCMessageToAllServices({ 779 this.actions.service.sendIPCMessageToAllServices({
780 channel: 'settings-update', 780 channel: 'settings-update',
diff --git a/src/webview/recipe.js b/src/webview/recipe.js
index 4e2f5233a..e95cae18b 100644
--- a/src/webview/recipe.js
+++ b/src/webview/recipe.js
@@ -131,7 +131,7 @@ class RecipeController {
131 'Darkmode enabled?', 131 'Darkmode enabled?',
132 this.settings.service.isDarkModeEnabled, 132 this.settings.service.isDarkModeEnabled,
133 'Dark theme active?', 133 'Dark theme active?',
134 this.settings.app.isDarkThemeActive 134 this.settings.app.isDarkThemeActive,
135 ); 135 );
136 if (this.settings.service.isDarkModeEnabled && this.settings.app.isDarkThemeActive !== false) { 136 if (this.settings.service.isDarkModeEnabled && this.settings.app.isDarkThemeActive !== false) {
137 debug('Enable dark mode'); 137 debug('Enable dark mode');