Make sure that the document is rendered on zooming and rotation for PDFViewer
instances using the defaultRenderingQueue
#6157
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In
viewer.js
we have code that ensures that the document is re-rendered on zooming and rotation. However, forcomponents
based viewers this might not work correctly, since there's currently no code which handles that.Note that there is a good chance that this "just works" in many
components
viewers already, thanks to thewatchScroll
function.The explanation is that zooming or rotation, most of the time, causes the viewer to change its (scrollable) size, thus triggering
PDFViewer_update
throughPDFViewer_scrollUpdate
.However, in general there's no guarantee that this will actually work (since zooming and rotation doesn't necessarily change the size of the viewer for all documents), and requiring every viewer
components
implementer to provide methods for this doesn't seem like a great idea.