Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.2
-
None
Description
I have a 'next page' button that simply calls
pdfView.goToPage(pdfView.currentPage + 1)
where pdfView is a PdfMultiPageView
If I start at the first page of a PDF (index 0) and rapidly press this button 15 times, pdfView.currentPage will have the expected value 15, but the PdfMultiPageView will actually show me a page that is somewhere around index 8-12 or so. It seems there's some asynchronous handling going on that can't cope well with being called while the previous "iteration" is still going on.