aboutsummaryrefslogtreecommitdiff
path: root/ext/fg
diff options
context:
space:
mode:
Diffstat (limited to 'ext/fg')
-rw-r--r--ext/fg/js/frontend.js8
1 files changed, 2 insertions, 6 deletions
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() {