diff options
author | Selim Cinek <cinek@google.com> | 2015-04-28 19:17:32 -0700 |
---|---|---|
committer | Selim Cinek <cinek@google.com> | 2015-05-05 14:53:08 -0700 |
commit | 8d5727f6e93bec98f7de622583d0c2b70fa750b6 (patch) | |
tree | 50f7b1de1e6e0c290296d66579c935efa0bbda40 /packages | |
parent | 704b9f82c345da2d63bc2785fb3733b486d3e119 (diff) | |
download | frameworks_base-8d5727f6e93bec98f7de622583d0c2b70fa750b6.zip frameworks_base-8d5727f6e93bec98f7de622583d0c2b70fa750b6.tar.gz frameworks_base-8d5727f6e93bec98f7de622583d0c2b70fa750b6.tar.bz2 |
Fixed a bug where the notifications would jump when going to the full shade
Change-Id: I811f3cd543f0e69d06bfe692435c579b7844173e
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollAlgorithm.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollAlgorithm.java b/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollAlgorithm.java index 202063a..de28ac7 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollAlgorithm.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollAlgorithm.java @@ -582,7 +582,7 @@ public class StackScrollAlgorithm { return row.getIntrinsicHeight(); } else if (child instanceof ExpandableView) { ExpandableView expandableView = (ExpandableView) child; - return expandableView.getActualHeight(); + return expandableView.getIntrinsicHeight(); } return child == null? mCollapsedSize : child.getHeight(); } |