diff options
| author | 2021-12-14 13:25:10 +0000 | |
|---|---|---|
| committer | 2021-12-14 13:25:10 +0000 | |
| commit | f78deb2a80cc689475882ac7ff7f2ed81206ed1e (patch) | |
| tree | 8c9902e2553db891dbe0b7e1d1823127c329f41e | |
| parent | 1377984dc185d608c4938c58242f1143536f87ff (diff) | |
| parent | 6a63b739aa96475e9652859a2098599993e14124 (diff) | |
Merge "Fix footer visibility w/r/t remote input" into sc-v2-dev am: 6a63b739aa
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16461335
Change-Id: I07944aaea81937e6dd0a421f55054c8f4cffac8b
| -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 16c9fa79f24c..79231796577b 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 @@ -668,6 +668,7 @@ public class NotificationStackScrollLayout extends ViewGroup implements Dumpable public void setIsRemoteInputActive(boolean isActive) { mIsRemoteInputActive = isActive; + updateFooter(); } @VisibleForTesting |