diff options
| author | 2021-12-14 13:39:16 +0000 | |
|---|---|---|
| committer | 2021-12-14 13:39:16 +0000 | |
| commit | baa29345b18ce023653a8eab1beaf573dd71d12e (patch) | |
| tree | 1e11acbdd97a256b0dc36322c68e68ec6b8e3e23 | |
| parent | 6049f433873a2b7e4d950fa7a2bc2394693c292d (diff) | |
| parent | f78deb2a80cc689475882ac7ff7f2ed81206ed1e (diff) | |
Merge "Fix footer visibility w/r/t remote input" into sc-v2-dev am: 6a63b739aa am: f78deb2a80
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16461335
Change-Id: Idc7c4675601981a6e1292bf6951607dbd7561a45
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java index e1dbf4efa4de..518788b5a6dd 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayout.java @@ -669,6 +669,7 @@ public class NotificationStackScrollLayout extends ViewGroup implements Dumpable public void setIsRemoteInputActive(boolean isActive) { mIsRemoteInputActive = isActive; + updateFooter(); } @VisibleForTesting |