summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorSelim Cinek <cinek@google.com>2015-04-28 19:17:32 -0700
committerSelim Cinek <cinek@google.com>2015-05-05 14:53:08 -0700
commit8d5727f6e93bec98f7de622583d0c2b70fa750b6 (patch)
tree50f7b1de1e6e0c290296d66579c935efa0bbda40 /packages
parent704b9f82c345da2d63bc2785fb3733b486d3e119 (diff)
downloadframeworks_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.java2
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();
}