am 548a4265: Merge "Fixed a bug where we might get stuck in a fully expanded statusbar" into mnc-dev

* commit '548a42653cfa981d00941e9942390a3a00ff095b':
  Fixed a bug where we might get stuck in a fully expanded statusbar
This commit is contained in:
Selim Cinek
2015-06-11 01:33:02 +00:00
committed by Android Git Automerger

View File

@@ -2292,6 +2292,10 @@ public class NotificationStackScrollLayout extends ViewGroup
public void onChildAnimationFinished() {
requestChildrenUpdate();
runAnimationFinishedRunnables();
}
private void runAnimationFinishedRunnables() {
for (Runnable runnable : mAnimationFinishedRunnables) {
runnable.run();
}
@@ -2349,6 +2353,7 @@ public class NotificationStackScrollLayout extends ViewGroup
if (mListener != null) {
mListener.onChildLocationsChanged(this);
}
runAnimationFinishedRunnables();
}
public void setSpeedBumpView(SpeedBumpView speedBumpView) {