diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-26 18:24:56 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-26 18:24:56 -0500 | 
| commit | d11cd7b28f6837c38a566461dc124799ac6736c9 (patch) | |
| tree | b6898af9b041cb3821a8e49362173acedb62fc75 | |
| parent | 43c9a5eb6a19d4056749718e11f16296be2d52c2 (diff) | |
Fix missing options for _onDisplayOptionsUpdated invocation (#1317)
| -rw-r--r-- | ext/bg/js/search.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index b445c161..c17ae1ac 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -77,7 +77,7 @@ class DisplaySearch extends Display {          this.hotkeyHandler.on('keydownNonHotkey', this._onKeyDown.bind(this));          this._onModeChange(); -        this._onDisplayOptionsUpdated(); +        this._onDisplayOptionsUpdated({options: this.getOptions()});          this.initializeState(); |