Return the query with the findcontrols

This commit is contained in:
DesWurstes 2020-08-20 09:28:02 +01:00
parent b52b36f6a5
commit 72f48ee089
2 changed files with 8 additions and 1 deletions

View File

@ -2438,12 +2438,18 @@ function webViewerUpdateFindMatchesCount({ matchesCount }) {
}
}
function webViewerUpdateFindControlState({ state, previous, matchesCount }) {
function webViewerUpdateFindControlState({
state,
previous,
matchesCount,
rawQuery,
}) {
if (PDFViewerApplication.supportsIntegratedFind) {
PDFViewerApplication.externalServices.updateFindControlState({
result: state,
findPrevious: previous,
matchesCount,
rawQuery,
});
} else {
PDFViewerApplication.findBar.updateUIState(state, previous, matchesCount);

View File

@ -736,6 +736,7 @@ class PDFFindController {
state,
previous,
matchesCount: this._requestMatchesCount(),
rawQuery: this._state ? this._state.query : null,
});
}
}