Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4db5703

Browse files
committed
Set rendering during scale to false by default
1 parent f8d81e2 commit 4db5703

File tree

1 file changed

+2
-2
lines changed
  • android-pdf-viewer/src/main/java/com/github/barteksc/pdfviewer

1 file changed

+2
-2
lines changed

android-pdf-viewer/src/main/java/com/github/barteksc/pdfviewer/PDFView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,12 @@ ScrollHandle getScrollHandle() {
267267
private boolean annotationRendering = false;
268268

269269
/**
270-
* True if the view should render during scaling - default<br/>
270+
* True if the view should render during scaling<br/>
271271
* Can not be forced on older API versions (< Build.VERSION_CODES.KITKAT) as the GestureDetector does
272272
* not detect scrolling while scaling.<br/>
273273
* False otherwise
274274
*/
275-
private boolean renderDuringScale = true;
275+
private boolean renderDuringScale = false;
276276

277277
/**
278278
* Construct the initial view

0 commit comments

Comments
 (0)