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

Commit df7962fc authored by Adnan Begovic's avatar Adnan Begovic Committed by Ricardo Cerqueira
Browse files

SystemUI: Always unset seperate roaming indicator.

  Since MobileState can be copied from previous servicestate
  event, we need to unset the seperate roaming icon forcibly.

TICKET: CYNGNOS-2209

Change-Id: I750d7ed0c594f23c399b5a01591b7aa7d9583621
(cherry picked from commit 9552ddcf)
parent 4a96a111
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -397,10 +397,10 @@ public class MobileSignalController extends SignalController<
        mCurrentState.dataConnected = mCurrentState.connected
                && mDataState == TelephonyManager.DATA_CONNECTED;

        mCurrentState.showSeparateRoaming = false;
        if (isCarrierNetworkChangeActive()) {
            mCurrentState.iconGroup = TelephonyIcons.CARRIER_NETWORK_CHANGE;
        } else if (isRoaming()) {
            mCurrentState.showSeparateRoaming = false;
            if (SystemProperties.getBoolean("ro.config.always_show_roaming", false)) {
                mCurrentState.showSeparateRoaming = true;
            } else {