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

Commit 59dc8d1d authored by Sanket Padawe's avatar Sanket Padawe
Browse files

SIM settings display name changes

Resubmitting the change for displaying SIM name in SIM settings.

Change-Id: I22d368c3880eaa54d37c9afcfd63d4e94e41fea8
parent a1640daf
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -428,12 +428,12 @@ public class SimSettings extends RestrictedSettingsFragment implements Indexable
        public void update() {
            final Resources res = getResources();

            if(mSubInfoRecord.displayName.length() == 0) {
            if (mSubInfoRecord != null) {
                if(TextUtils.isEmpty(mSubInfoRecord.displayName)) {
                    setTitle(getCarrierName());
                } else {
                    setTitle(mSubInfoRecord.displayName);
                }
            if (mSubInfoRecord != null) {
                setSummary(mSubInfoRecord.number.toString());
                setEnabled(true);
            } else {