summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Chet Haase <chet@google.com> 2012-08-21 13:03:49 -0700
committer Android (Google) Code Review <android-gerrit@google.com> 2012-08-21 13:03:49 -0700
commit66bcbb9e39f6c877210e7aa46b8e5d38fd79070a (patch)
tree12e1c804859af7d1d11b5718687183bbe32a2c3e
parentdf5c3a54c7e955fb89951b63ff49f275a53f9c35 (diff)
parent179ec6d0bc9963ffc065a4e7983743bb5e4ce9fe (diff)
Merge "Fix notification panel bug which prevented proper resizing" into jb-mr1-dev
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java
index b595257af363..33f467f157ea 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java
@@ -66,6 +66,7 @@ public class PanelView extends FrameLayout {
private final Runnable mStopAnimator = new Runnable() { public void run() {
if (mTimeAnimator.isStarted()) {
mTimeAnimator.end();
+ mRubberbanding = false;
}
}};