From c1b16cebe7744b5d98b8e109bb3235676a79f474 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Tue, 8 Sep 2020 18:52:23 -0400 Subject: Refactor how TextScanner's public search() function is used (#787) --- ext/fg/js/frontend.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ext/fg/js') diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index b9656882..517a9de0 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -129,7 +129,7 @@ class Frontend { } async setTextSource(textSource) { - await this._textScanner.search(textSource, 'script'); + await this._textScanner.search(textSource); } async getOptionsContext() { @@ -299,11 +299,7 @@ class Frontend { this._updateContentScale(); - const textSourceCurrent = this._textScanner.getCurrentTextSource(); - const causeCurrent = this._textScanner.causeCurrent; - if (textSourceCurrent !== null && causeCurrent !== null) { - await this._textScanner.search(textSourceCurrent, causeCurrent); - } + await this._textScanner.searchLast(); } async _updatePopup() { -- cgit v1.2.3