summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-02 22:30:53 +0400
committerAndrew Dolgov <[email protected]>2012-12-02 22:30:53 +0400
commit774f96af14671e587d48821f4d4751ccd6000050 (patch)
tree5eba2408fb235048cd9a8be636a01d646275be5f /src
parentbafb56c06f90725c6b06f856222ed72034f65404 (diff)
increase max_zoom
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 a0e1a3b..3213fb2 100644
--- a/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java
+++ b/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java
@@ -39,7 +39,7 @@ public class ImageViewTouchBase extends ImageView implements IDisposable {
protected final float[] mMatrixValues = new float[9];
protected int mThisWidth = -1, mThisHeight = -1;
protected boolean mFitToScreen = false;
- final protected float MAX_ZOOM = 2.0f;
+ final protected float MAX_ZOOM = 4.0f;
protected RectF mBitmapRect = new RectF();
protected RectF mCenterRect = new RectF();