Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3401e711 authored by Steve Elliott's avatar Steve Elliott
Browse files

Don't update SBIV dimens during NIC reordering

Flag: ACONFIG com.android.systemui.notifications_icon_container_refactor TRUNKFOOD
Bug: 323606761
Test: manual - verify icons look correct when notifs reorder
Change-Id: I731b9176365f5f8fe5cab24c41117b62bb5a0af5
parent 3246cf07
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -349,8 +349,12 @@ public class NotificationIconContainer extends ViewGroup {
            }
        }
        if (child instanceof StatusBarIconView) {
            if (NotificationIconContainerRefactor.isEnabled()) {
                if (!mChangingViewPositions) {
                    ((StatusBarIconView) child).updateIconDimens();
                }
            } else {
                ((StatusBarIconView) child).updateIconDimens();
            if (!NotificationIconContainerRefactor.isEnabled()) {
                ((StatusBarIconView) child).setDozing(mDozing, false, 0);
            }
        }