diff options
author | Selim Cinek <cinek@google.com> | 2014-05-01 19:31:08 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-01 19:31:09 +0000 |
commit | b6ea9db449cef8455c239c81f9f89190b28f0f85 (patch) | |
tree | 0283a984aa27074ccd54fd473b5932c305fd7fb1 | |
parent | 3a8557dc22a7190b975302c1720fa1eb98e57a71 (diff) | |
parent | b77e315292fb50b679df44fee5d010bbb267377a (diff) | |
download | frameworks_base-b6ea9db449cef8455c239c81f9f89190b28f0f85.zip frameworks_base-b6ea9db449cef8455c239c81f9f89190b28f0f85.tar.gz frameworks_base-b6ea9db449cef8455c239c81f9f89190b28f0f85.tar.bz2 |
Merge "Fixed a bug where the notification scroller could crash."
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java index a364b416..0e75acd 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java @@ -1120,7 +1120,7 @@ public class NotificationStackScrollLayout extends ViewGroup } public void onChildAnimationFinished() { - applyCurrentState(); + updateChildren(); mAnimationEvents.clear(); } |