Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutController.java +8 −1 Original line number Diff line number Diff line Loading @@ -171,6 +171,7 @@ public class NotificationStackScrollLayoutController { private final NotificationLockscreenUserManager mLockscreenUserManager; // TODO: StatusBar should be encapsulated behind a Controller private final StatusBar mStatusBar; private final NotificationGroupManagerLegacy mLegacyGroupManager; private final SectionHeaderController mSilentHeaderController; private final LockscreenShadeTransitionController mLockscreenShadeTransitionController; Loading Loading @@ -651,6 +652,8 @@ public class NotificationStackScrollLayoutController { mStatusBar.requestNotificationUpdate("onGroupsChanged"); } }); mLegacyGroupManager = featureFlags.isNewNotifPipelineRenderingEnabled() ? null : legacyGroupManager; mSilentHeaderController = silentHeaderController; mFeatureFlags = featureFlags; mNotifPipeline = notifPipeline; Loading Loading @@ -1193,9 +1196,13 @@ public class NotificationStackScrollLayoutController { final boolean inSection = NotificationStackScrollLayout.matchesSelection(row, selection); if (matchClearable && inSection) { if (mLegacyGroupManager == null || !mLegacyGroupManager.isSummaryOfSuppressedGroup( row.getEntry().getSbn())) { return true; } } } return false; } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/NotificationStackScrollLayoutController.java +8 −1 Original line number Diff line number Diff line Loading @@ -171,6 +171,7 @@ public class NotificationStackScrollLayoutController { private final NotificationLockscreenUserManager mLockscreenUserManager; // TODO: StatusBar should be encapsulated behind a Controller private final StatusBar mStatusBar; private final NotificationGroupManagerLegacy mLegacyGroupManager; private final SectionHeaderController mSilentHeaderController; private final LockscreenShadeTransitionController mLockscreenShadeTransitionController; Loading Loading @@ -651,6 +652,8 @@ public class NotificationStackScrollLayoutController { mStatusBar.requestNotificationUpdate("onGroupsChanged"); } }); mLegacyGroupManager = featureFlags.isNewNotifPipelineRenderingEnabled() ? null : legacyGroupManager; mSilentHeaderController = silentHeaderController; mFeatureFlags = featureFlags; mNotifPipeline = notifPipeline; Loading Loading @@ -1193,9 +1196,13 @@ public class NotificationStackScrollLayoutController { final boolean inSection = NotificationStackScrollLayout.matchesSelection(row, selection); if (matchClearable && inSection) { if (mLegacyGroupManager == null || !mLegacyGroupManager.isSummaryOfSuppressedGroup( row.getEntry().getSbn())) { return true; } } } return false; } Loading