diff options
Diffstat (limited to 'ext/js/app')
-rw-r--r-- | ext/js/app/frontend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/app/frontend.js b/ext/js/app/frontend.js index 3a262c65..229ec940 100644 --- a/ext/js/app/frontend.js +++ b/ext/js/app/frontend.js @@ -757,7 +757,7 @@ class Frontend { async _scanSelectedText(allowEmptyRange) { const range = this._getFirstSelectionRange(allowEmptyRange); if (range === null) { return false; } - const source = new TextSourceRange(range, range.toString(), null, null); + const source = TextSourceRange.create(range); await this._textScanner.search(source, {focus: true, restoreSelection: true}); return true; } |