commit | dc5d95dba02dd835951134afca8809de19ec8f75 | [log] [tgz] |
---|---|---|
author | Michał Brzeziński <brzezinski@google.com> | Tue Nov 01 15:59:54 2022 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Tue Nov 01 15:59:54 2022 +0000 |
tree | 8f451de5740d3fdd2abae8eacd55fe369cf2f643 | |
parent | debeb035772981984a62cc806a219bd7725de3db [diff] | |
parent | 7b5962991c434b26b10cd537ee32705743fb1345 [diff] |
Merge "Fixing QS not visible when opening split shade with adb command" into tm-qpr-dev
diff --git a/packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java b/packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java index 6426a06..85edac8 100644 --- a/packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java +++ b/packages/SystemUI/src/com/android/systemui/shade/NotificationPanelViewController.java
@@ -2015,7 +2015,7 @@ // case but currently motion in portrait looks worse than when using flingSettings. // TODO: make below function transitioning smoothly also in portrait with null target mLockscreenShadeTransitionController.goToLockedShade( - /* expandedView= */null, /* needsQSAnimation= */false); + /* expandedView= */null, /* needsQSAnimation= */true); } else if (isFullyCollapsed()) { expand(true /* animate */); } else {
diff --git a/packages/SystemUI/tests/src/com/android/systemui/shade/NotificationPanelViewControllerTest.java b/packages/SystemUI/tests/src/com/android/systemui/shade/NotificationPanelViewControllerTest.java index dbf9e67..93a1243 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/shade/NotificationPanelViewControllerTest.java +++ b/packages/SystemUI/tests/src/com/android/systemui/shade/NotificationPanelViewControllerTest.java
@@ -1282,7 +1282,7 @@ mNotificationPanelViewController.expandWithQs(); verify(mLockscreenShadeTransitionController).goToLockedShade( - /* expandedView= */null, /* needsQSAnimation= */false); + /* expandedView= */null, /* needsQSAnimation= */true); } @Test