diff options
Diffstat (limited to 'ext/js/display/query-parser.js')
-rw-r--r-- | ext/js/display/query-parser.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/js/display/query-parser.js b/ext/js/display/query-parser.js index c53208ca..344383fb 100644 --- a/ext/js/display/query-parser.js +++ b/ext/js/display/query-parser.js @@ -155,7 +155,7 @@ export class QueryParser extends EventDispatcher { /** * @param {import('text-scanner').EventArgument<'searchSuccess'>} details */ - _onSearchSuccess({type, dictionaryEntries, sentence, inputInfo, textSource, optionsContext}) { + _onSearchSuccess({type, dictionaryEntries, sentence, inputInfo, textSource, optionsContext, pageTheme}) { this.trigger('searched', { textScanner: this._textScanner, type, @@ -165,6 +165,7 @@ export class QueryParser extends EventDispatcher { textSource, optionsContext, sentenceOffset: this._getSentenceOffset(textSource), + pageTheme: pageTheme, }); } |