From 336b5d25fc5d8a39d2bb45beb4ea76f2c251e319 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: 199767031 Test: manual 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 f1ae3dad9d3a9..51a84bd33979f 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 @@ -1272,6 +1272,9 @@ public class NotificationStackScrollLayoutController { } public void updateSectionBoundaries(String reason) { + if (mFeatureFlags.isNewNotifPipelineRenderingEnabled()) { + return; + } mView.updateSectionBoundaries(reason); }