Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #26

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Fix #26

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class PDFView extends RelativeLayout {

private static final String TAG = PDFView.class.getSimpleName();

public static final float DEFAULT_MAX_SCALE = 3.0f;
public static final float DEFAULT_MAX_SCALE = 60.0f;
public static final float DEFAULT_MID_SCALE = 1.75f;
public static final float DEFAULT_MIN_SCALE = 1.0f;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static class Cache {

public static class Pinch {

public static float MAXIMUM_ZOOM = 10;
public static float MAXIMUM_ZOOM = 60;

public static float MINIMUM_ZOOM = 1;

Expand Down