From 197ad25d057bfa4390f0f732d09c0d9f81c54582 Mon Sep 17 00:00:00 2001 From: Marco Nelissen Date: Fri, 9 Oct 2009 10:35:30 -0700 Subject: [PATCH] Stop view dragging the correct way, so we don't end up recycling an in-use bitmap. (fixes bug 2176573) --- src/com/android/music/TouchInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/music/TouchInterceptor.java b/src/com/android/music/TouchInterceptor.java index 6c22e72..d159fb8 100644 --- a/src/com/android/music/TouchInterceptor.java +++ b/src/com/android/music/TouchInterceptor.java @@ -127,7 +127,7 @@ public class TouchInterceptor extends ListView { mLowerBound = Math.max(y + touchSlop, mHeight * 2 /3); return false; } - mDragView = null; + stopDragging(); break; } } -- 2.11.0