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:
parent
30e69956db
commit
65d618635c
3 changed files with 62 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue