diff options
| -rw-r--r-- | ext/fg/js/frontend.js | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index a31bdf79..eea77d2a 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -297,10 +297,7 @@ class Frontend {      }      async searchAt(point, type) { -        if ( -            this.pendingLookup || -            await this.popup.containsPoint(point) -        ) { +        if (this.pendingLookup || await this.popup.containsPoint(point)) {              return;          } |