Remove lowercase Fix #7947
This commit is contained in:
parent
a883177d7c
commit
6c93dc4878
1 changed files with 2 additions and 2 deletions
|
@ -319,8 +319,8 @@ public class AddPointBottomSheetDialog extends MenuBottomSheetDialogFragment {
|
|||
final View switchStartAndEndView = View.inflate(new ContextThemeWrapper(getContext(), themeRes), R.layout.bottom_sheet_item_simple_56dp, null);
|
||||
TextView title = (TextView) switchStartAndEndView.findViewById(R.id.title);
|
||||
|
||||
String start = getString(R.string.route_start_point).toLowerCase();
|
||||
String destination = getString(R.string.route_descr_destination).toLowerCase();
|
||||
String start = getString(R.string.route_start_point);
|
||||
String destination = getString(R.string.route_descr_destination);
|
||||
String titleS = getString(R.string.swap_two_places, start, destination);
|
||||
SpannableString titleSpan = new SpannableString(titleS);
|
||||
int startIndex = titleS.indexOf(start);
|
||||
|
|
Loading…
Reference in a new issue