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

Commit bac63e3e authored by Steve Elliott's avatar Steve Elliott Committed by Android (Google) Code Review
Browse files

Merge "Don't update SBIV dimens during NIC reordering" into main

parents 97fd6e03 3401e711
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);
            }
        }