From 61499496b1cd6fc648dd81f93e2284b8dcf8f917 Mon Sep 17 00:00:00 2001 From: Jeff DeCew Date: Fri, 10 Sep 2021 20:01:10 +0000 Subject: [PATCH] New pipeline: Section manager is old pipeline, so don't call it for the new. Fixes: 204127880 Bug: 199767031 Test: manual Merged-In: I01f1eed3edd67095e25ce30c03fab77272688f2b Change-Id: I01f1eed3edd67095e25ce30c03fab77272688f2b --- .../stack/NotificationStackScrollLayoutController.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutController.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutController.java index b4d96421e2c29..444e5f3c69158 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutController.java @@ -1300,6 +1300,9 @@ public class NotificationStackScrollLayoutController { } public void updateSectionBoundaries(String reason) { + if (mFeatureFlags.isNewNotifPipelineRenderingEnabled()) { + return; + } mView.updateSectionBoundaries(reason); }