diff options
| author | 2023-07-24 20:44:40 +0000 | |
|---|---|---|
| committer | 2023-07-24 20:44:40 +0000 | |
| commit | 6b2bd0f96ab637f00cd71595a0eff5e6fd6e2262 (patch) | |
| tree | 63041a1ca5c60cc413031e137e8361746a704c07 | |
| parent | af4110d373eced22920766cc24ed068d8876b282 (diff) | |
| parent | 338ade29ba21f5ddb6be0d524b650bee8f46b418 (diff) | |
Merge "Don't attach pipeline to group expansion mgr." into udc-dev am: d77e69686b am: 56f4f108d8 am: 338ade29ba
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/24148304
Change-Id: If12c5ace8801acd57237645402ba789d4b53df2b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/StackCoordinator.kt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/StackCoordinator.kt b/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/StackCoordinator.kt index 62a0d138fd05..5c2f9a8d28ec 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/StackCoordinator.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/StackCoordinator.kt @@ -39,7 +39,10 @@ class StackCoordinator @Inject internal constructor( override fun attach(pipeline: NotifPipeline) { pipeline.addOnAfterRenderListListener(::onAfterRenderList) - groupExpansionManagerImpl.attach(pipeline) + // TODO(b/282865576): This has an issue where it makes changes to some groups without + // notifying listeners. To be fixed in QPR, but for now let's comment it out to avoid the + // group expansion bug. + // groupExpansionManagerImpl.attach(pipeline) } fun onAfterRenderList(entries: List<ListEntry>, controller: NotifStackController) = |