1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +02:00

When zooming the scrollbar can disappear and then no scrollend is triggered

This commit is contained in:
Calixte Denizet 2024-03-14 18:08:46 +01:00
parent 30e69956db
commit 65d618635c
3 changed files with 62 additions and 2 deletions

View file

@ -2024,8 +2024,9 @@ const PDFViewerApplication = {
});
const scroll = (_boundEvents.mainContainerScroll = () => {
if (
this._lastScrollTop === mainContainer.scrollTop &&
this._lastScrollLeft === mainContainer.scrollLeft
this._isCtrlKeyDown ||
(this._lastScrollTop === mainContainer.scrollTop &&
this._lastScrollLeft === mainContainer.scrollLeft)
) {
return;
}