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

Commit 693e5268 authored by Tom Hsu's avatar Tom Hsu Committed by Automerger Merge Worker
Browse files

Merge "Only default APN type can make preference selectable." into rvc-qpr-dev am: f76a2ff6

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/13672665

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ia58c627514657f60dd2401cc7eaed1495d5747ca
parents 042f06aa f76a2ff6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -342,7 +342,7 @@ public class ApnSettings extends RestrictedSettingsFragment
                    pref.setSummary(apn);
                }

                final boolean selectable = ((type == null) || !type.equals("mms"));
                final boolean selectable = ((type == null) || type.contains("default"));
                pref.setSelectable(selectable);
                if (selectable) {
                    if ((mSelectedKey != null) && mSelectedKey.equals(key)) {