summaryrefslogtreecommitdiff
path: root/src/it
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-03 13:01:14 +0300
committerAndrew Dolgov <[email protected]>2012-12-03 13:01:14 +0300
commit33945d243edd7d7e613297293d20f125fb9b6041 (patch)
tree51ec89561bb82dfc2e0b3731c001f3f814c6a520 /src/it
parent7c4aad5a47c87a87828a35e623cabc927030fd29 (diff)
update support library to v11; use setUserVisibleHint() to manage
thumbnail state; reimplement thumbnail state
Diffstat (limited to 'src/it')
-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 95d6333..d497839 100644
--- a/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java
+++ b/src/it/sephiroth/android/library/imagezoom/ImageViewTouchBase.java
@@ -408,7 +408,7 @@ public class ImageViewTouchBase extends ImageView implements IDisposable {
protected void zoomTo( float scale, float centerX, float centerY ) {
// Log.i(LOG_TAG, "zoomTo");
- if ( scale > mMaxZoom ) scale = mMaxZoom;
+ //if ( scale > mMaxZoom ) scale = mMaxZoom;
float oldScale = getScale();
float deltaScale = scale / oldScale;
postScale( deltaScale, centerX, centerY );