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

Commit f18ed45f authored by Jason Monk's avatar Jason Monk Committed by Android (Google) Code Review
Browse files

Merge "Fix to work statusbar configs as mcc/mnc" into mnc-dev

parents 15b64099 6be4f6b1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2914,6 +2914,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
        updateRowStates();
        mIconController.updateResources();
        mScreenPinningRequest.onConfigurationChanged();
        mNetworkController.handleConfigurationChanged();
    }

    @Override
+2 −3
Original line number Diff line number Diff line
@@ -340,7 +340,6 @@ public class NetworkControllerImpl extends BroadcastReceiver
                action.equals(ConnectivityManager.INET_CONDITION_ACTION)) {
            updateConnectivity();
        } else if (action.equals(Intent.ACTION_CONFIGURATION_CHANGED)) {
            mConfig = Config.readConfig(mContext);
            handleConfigurationChanged();
        } else if (action.equals(Intent.ACTION_AIRPLANE_MODE_CHANGED)) {
            refreshLocale();
@@ -374,8 +373,8 @@ public class NetworkControllerImpl extends BroadcastReceiver
        }
    }

    @VisibleForTesting
    void handleConfigurationChanged() {
    public void handleConfigurationChanged() {
        mConfig = Config.readConfig(mContext);
        for (MobileSignalController mobileSignalController : mMobileSignalControllers.values()) {
            mobileSignalController.setConfiguration(mConfig);
        }