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

Commit 00de08f4 authored by Betty Chang's avatar Betty Chang Committed by Gerrit Code Review
Browse files

Merge "[Telephony] Show 4G icon instead of 3G icon for UMTS network in ATT"

parents 0b8a2182 a2b70853
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -196,8 +196,13 @@ public class MobileSignalController extends SignalController<
                TelephonyIcons.THREE_G);
        mNetworkToIconLookup.put(toIconKey(TelephonyManager.NETWORK_TYPE_EHRPD),
                TelephonyIcons.THREE_G);
        if (mConfig.show4gFor3g) {
            mNetworkToIconLookup.put(toIconKey(TelephonyManager.NETWORK_TYPE_UMTS),
                TelephonyIcons.FOUR_G);
        } else {
            mNetworkToIconLookup.put(toIconKey(TelephonyManager.NETWORK_TYPE_UMTS),
                TelephonyIcons.THREE_G);
        }
        mNetworkToIconLookup.put(toIconKey(TelephonyManager.NETWORK_TYPE_TD_SCDMA),
                TelephonyIcons.THREE_G);