diff options
| author | 2023-10-25 16:52:43 +0000 | |
|---|---|---|
| committer | 2023-10-25 16:52:43 +0000 | |
| commit | e75ee431f5f4d4466b97bb593a614578e97efa62 (patch) | |
| tree | 345c2c84d1ab096f765b36d58268951f77b88975 | |
| parent | 693b34e15dc92fe3f30aff3dfd6397c5f7a6f295 (diff) | |
| parent | ee1f0ac01c1d30a2e594c273a6b153e7a59130eb (diff) | |
Merge "Fix unexpected use of new code when in legacy mode" into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/LegacyNotificationIconAreaControllerImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/LegacyNotificationIconAreaControllerImpl.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/LegacyNotificationIconAreaControllerImpl.java index 4284c96c9966..dd324342ded9 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/LegacyNotificationIconAreaControllerImpl.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/LegacyNotificationIconAreaControllerImpl.java @@ -481,7 +481,7 @@ public class LegacyNotificationIconAreaControllerImpl implements hostLayout.addView(expected, i); } hostLayout.setChangingViewPositions(false); - hostLayout.setReplacingIcons(null); + hostLayout.setReplacingIconsLegacy(null); } /** |