aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/recipe.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/webview/recipe.js')
-rw-r--r--src/webview/recipe.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/webview/recipe.js b/src/webview/recipe.js
index 8c93da202..acf4f9f31 100644
--- a/src/webview/recipe.js
+++ b/src/webview/recipe.js
@@ -188,6 +188,9 @@ class RecipeController {
188 () => this.spellcheckerLanguage, 188 () => this.spellcheckerLanguage,
189 () => this.settings.app.searchEngine, 189 () => this.settings.app.searchEngine,
190 () => this.settings.app.clipboardNotifications, 190 () => this.settings.app.clipboardNotifications,
191 () => this.settings.app.enableTranslator,
192 () => this.settings.app.translatorEngine,
193 () => this.settings.app.translatorLanguage,
191 ); 194 );
192 195
193 autorun(() => this.update()); 196 autorun(() => this.update());
@@ -293,6 +296,9 @@ class RecipeController {
293 ); 296 );
294 debug('darkReaderSettigs', this.settings.service.darkReaderSettings); 297 debug('darkReaderSettigs', this.settings.service.darkReaderSettings);
295 debug('searchEngine', this.settings.app.searchEngine); 298 debug('searchEngine', this.settings.app.searchEngine);
299 debug('enableTranslator', this.settings.app.enableTranslator);
300 debug('translatorEngine', this.settings.app.translatorEngine);
301 debug('translatorLanguage', this.settings.app.translatorLanguage);
296 302
297 if (this.userscript && this.userscript.internal_setSettings) { 303 if (this.userscript && this.userscript.internal_setSettings) {
298 this.userscript.internal_setSettings(this.settings); 304 this.userscript.internal_setSettings(this.settings);