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

Commit 5d188f34 authored by Wang Han's avatar Wang Han Committed by Luca Stefani
Browse files

Revert "SystemUI: Sort subscriptions in reversed order"

This reverts commit 7dc1eeec.

Change-Id: I999dd9182c4c0e87a4251db45992ec477b6f5632
parent cb0e9d09
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -572,7 +572,7 @@ public class NetworkControllerImpl extends BroadcastReceiver
            public int compare(SubscriptionInfo lhs, SubscriptionInfo rhs) {
                return lhs.getSimSlotIndex() == rhs.getSimSlotIndex()
                        ? lhs.getSubscriptionId() - rhs.getSubscriptionId()
                        : rhs.getSimSlotIndex() - lhs.getSimSlotIndex();
                        : lhs.getSimSlotIndex() - rhs.getSimSlotIndex();
            }
        });
        mCurrentSubscriptions = subscriptions;