diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-26 18:30:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 18:30:01 -0500 |
commit | 8d292363d4d7363134a66e6d35e549f4634521a1 (patch) | |
tree | 880cad7f3f2e279401af888335d053c6c80b48cf /ext/bg/js/backend.js | |
parent | d11cd7b28f6837c38a566461dc124799ac6736c9 (diff) |
Update clipboard options organization (#1318)
* Update options organization
* Update general.enableClipboardPopups to clipboard.enableBackgroundMonitor
* Update general.enableClipboardMonitor to clipboard.enableSearchPageMonitor
* Update general.maximumClipboardSearchLength to clipboard.maximumSearchLength
* Update general.autoSearchClipboardContent to clipboard.autoSearchContent
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index fb0596d5..9a8844c5 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -233,9 +233,9 @@ class Backend { // Event handlers async _onClipboardTextChange({text}) { - const {general: {maximumClipboardSearchLength}} = this._getProfileOptions({current: true}); - if (text.length > maximumClipboardSearchLength) { - text = text.substring(0, maximumClipboardSearchLength); + const {clipboard: {maximumSearchLength}} = this._getProfileOptions({current: true}); + if (text.length > maximumSearchLength) { + text = text.substring(0, maximumSearchLength); } try { const {tab, created} = await this._getOrCreateSearchPopup(); @@ -912,7 +912,7 @@ class Backend { this._mecab.stopListener(); } - if (options.general.enableClipboardPopups) { + if (options.clipboard.enableBackgroundMonitor) { this._clipboardMonitor.start(); } else { this._clipboardMonitor.stop(); |