From 85717d9f8d17a153fe3e7c13d24e7f7b205cdcdd Mon Sep 17 00:00:00 2001 From: Antony Sargent Date: Thu, 28 Mar 2019 10:25:00 -0700 Subject: [PATCH] Use better string in dialog asking which SIM to use for SMS Right now when you have a dual-SIM device but no default set for which one to use for SMS, when you go to try and send an SMS you'll get a dialog asking which SIM to use with the generic string of "Select a SIM card". We recently added a more specific string for this in a separate CL, which reads "Select a SIM card for SMS". This CL switches the code to use that more specific string. Bug: 129021763 Test: compile / manual Change-Id: I7d12a7191de23366b0a6b6888021e57ff9ddced9 --- src/com/android/settings/sim/SimDialogActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/sim/SimDialogActivity.java b/src/com/android/settings/sim/SimDialogActivity.java index 13148c8de8f..487dace2fd0 100644 --- a/src/com/android/settings/sim/SimDialogActivity.java +++ b/src/com/android/settings/sim/SimDialogActivity.java @@ -254,7 +254,7 @@ public class SimDialogActivity extends Activity { builder.setTitle(R.string.select_sim_for_calls); break; case SMS_PICK: - builder.setTitle(R.string.sim_card_select_title); + builder.setTitle(R.string.select_sim_for_sms); break; default: throw new IllegalArgumentException("Invalid dialog type "