summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-09-21 19:55:08 +0400
committerAndrew Dolgov <[email protected]>2013-09-21 19:55:08 +0400
commit01ba164f221c171275b8be96c4f2b15216b9fa02 (patch)
tree3a1c7e0a75282952a6a6acf14581e5cc45540804 /src
parent8949320ec6bddb19c8476d25297c68c3fd9898d1 (diff)
increase maximum allowed zoom because of small comic files on xxhdpi
devices
Diffstat (limited to 'src')
-rw-r--r--src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java b/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java
index 422b08e..8452a21 100644
--- a/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java
+++ b/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java
@@ -40,7 +40,7 @@ public class ImageViewTouchBase extends ImageView implements IDisposable {
protected int mThisWidth = -1, mThisHeight = -1;
protected boolean mFitToScreen = false;
protected boolean mFitToWidth = false;
- final protected float MAX_ZOOM = 2.0f;
+ final protected float MAX_ZOOM = 3.0f;
protected RectF mBitmapRect = new RectF();
protected RectF mCenterRect = new RectF();