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

Commit 55f54c5d authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "SystemUI: Fix systemui FC issue"

parents d6bdc255 8d2641da
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -625,10 +625,10 @@ public class MobileSignalController extends SignalController<
            mCurrentState.networkName = mServiceState.getOperatorAlphaShort();
        }

        if (!showLongOperatorName()) {
            mCurrentState.networkNameData = TextUtils.isEmpty(mServiceState.
                    getOperatorAlphaShort()) ? mCurrentState.networkNameData : mServiceState.
                    getOperatorAlphaShort() + " " + getNetworkClassString(mServiceState);
        if (!showLongOperatorName() && mServiceState != null && !TextUtils.isEmpty(
                mServiceState.getOperatorAlphaShort())) {
            mCurrentState.networkNameData = mServiceState.getOperatorAlphaShort()
                            + " " + getNetworkClassString(mServiceState);
        }

        if (mConfig.readIconsFromXml) {