diff options
Diffstat (limited to 'ext/fg/js')
-rw-r--r-- | ext/fg/js/frontend.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 3ddf0d25..8189b8ad 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -254,12 +254,12 @@ class Frontend { await this.updateOptions(); } - _onSearched({type, definitions, sentence, input: {cause}, textSource, optionsContext, error}) { + _onSearched({type, definitions, sentence, input: {cause, empty}, textSource, optionsContext, error}) { const scanningOptions = this._options.scanning; if (error !== null) { if (yomichan.isExtensionUnloaded) { - if (textSource !== null && scanningOptions.modifier !== 'none') { + if (textSource !== null && !empty) { this._showExtensionUnloaded(textSource); } } else { @@ -321,10 +321,9 @@ class Frontend { await this._updatePopup(); this._textScanner.setOptions({ + inputs: scanningOptions.inputs, deepContentScan: scanningOptions.deepDomScan, selectText: scanningOptions.selectText, - modifier: scanningOptions.modifier, - useMiddleMouse: scanningOptions.middleMouse, delay: scanningOptions.delay, touchInputEnabled: scanningOptions.touchInputEnabled, scanLength: scanningOptions.length, |