diff options
| author | 2019-04-12 20:32:32 +0000 | |
|---|---|---|
| committer | 2019-04-12 20:32:32 +0000 | |
| commit | 53317d29e8e148e791fb089de454668b541487cc (patch) | |
| tree | 98ce04307abf7c4435529e4152430ee711d1e62c | |
| parent | 7de292aaf063489f27d12c777814f72a3df84bee (diff) | |
| parent | 3558fb1578c518a61cd841d34288852837f388aa (diff) | |
Merge "Fix flickering when swiping up" into qt-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java index 0e9264b6b5a4..dd957b402b31 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java @@ -1709,7 +1709,8 @@ public class NotificationPanelView extends PanelView implements min = Math.max(min, minHeight); } int maxHeight; - if (mQsExpandImmediate || mQsExpanded || mIsExpanding && mQsExpandedWhenExpandingStarted) { + if (mQsExpandImmediate || mQsExpanded || mIsExpanding && mQsExpandedWhenExpandingStarted + || mPulsing) { maxHeight = calculatePanelHeightQsExpanded(); } else { maxHeight = calculatePanelHeightShade(); |