diff options
| author | 2015-12-01 17:36:59 -0800 | |
|---|---|---|
| committer | 2015-12-01 17:36:59 -0800 | |
| commit | c349c3d43bd59ff22a638bded955594bd765fc26 (patch) | |
| tree | 09a97775357651a9822a3172a9dcdaa968571ce6 | |
| parent | a89ef23e8c3cf6f84141a5964b05e8961c4cce31 (diff) | |
Fixed a bug where the panel could be too small in certain cases
Because we were updating the views to be gone but the contentheight
was never updated.
Change-Id: Ic0a774e82469e48dbedefa09eace68aabaa6e8c3
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java index befa93a67640..3c7ff7f13146 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java @@ -1299,6 +1299,7 @@ public abstract class BaseStatusBar extends SystemUI implements // Since the number of notifications is determined based on the height of the view, we // need to update them. updateRowStates(); + mStackScroller.onHeightChanged(null, false); } } |