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

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

Merge "Fix issue that Alias name change back to default after reboot."

parents e53f2d35 5991173f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -119,7 +119,8 @@ public class SimConfiguration extends PreferenceActivity implements TextWatcher

            SubInfoRecord mSubInfoRecord = MultiSimSettingTab.findRecordBySlotId(
                    preference.getContext(), mSubscription);
            SubscriptionManager.setDisplayName(multiSimName, mSubInfoRecord.subId);
            SubscriptionManager.setDisplayName(multiSimName, mSubInfoRecord.subId,
                    SubscriptionManager.NAME_SOURCE_USER_INPUT);

            mNamePreference.setSummary(multiSimName);
            Intent intent = new Intent(MultiSimSettingsConstants.SUBNAME_CHANGED);
+1 −1
Original line number Diff line number Diff line
@@ -544,7 +544,7 @@ public class SimSettings extends RestrictedSettingsFragment implements Indexable

                    mSubInfoRecord.displayName = nameText.getText().toString();
                    SubscriptionManager.setDisplayName(mSubInfoRecord.displayName,
                        mSubInfoRecord.subId);
                        mSubInfoRecord.subId, SubscriptionManager.NAME_SOURCE_USER_INPUT);

                    updateAllOptions();
                    update();