|
@@ -2150,6 +2150,10 @@ var PDFViewer = (function pdfViewer() {
|
|
|
}
|
|
|
|
|
|
this._setScale(this._currentScaleValue, true);
|
|
|
+
|
|
|
+ if (this.defaultRenderingQueue) {
|
|
|
+ this.update();
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
/**
|
|
@@ -2287,7 +2291,7 @@ var PDFViewer = (function pdfViewer() {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- _scrollUpdate: function () {
|
|
|
+ _scrollUpdate: function PDFViewer_scrollUpdate() {
|
|
|
if (this.pagesCount === 0) {
|
|
|
return;
|
|
|
}
|
|
@@ -2336,6 +2340,10 @@ var PDFViewer = (function pdfViewer() {
|
|
|
}
|
|
|
|
|
|
this._setScaleDispatchEvent(newScale, newValue, preset);
|
|
|
+
|
|
|
+ if (this.defaultRenderingQueue) {
|
|
|
+ this.update();
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
_setScale: function pdfViewer_setScale(value, noScroll) {
|