From 910e04542261e9ecfe4a01c54039c14c17e739a1 Mon Sep 17 00:00:00 2001 From: Jeff DeCew Date: Mon, 13 Dec 2021 22:09:10 -0500 Subject: [PATCH] Fix footer visibility w/r/t remote input The field change wasn't triggering an update, causing the footer visibility to be stale, making it appear this was somehow inverted. Fixes: 206112230 Test: activate and deactiveate remote input; ensure footer is present Change-Id: I1d197389c4a8acac8c7f2c00e3044a738716b9c9 --- .../notification/stack/NotificationStackScrollLayout.java | 1 + 1 file changed, 1 insertion(+) 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 9167b08ecd0cf..a4977b8e49c92 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