Loading src/com/android/calendar/recurrencepicker/RecurrencePickerDialog.java +4 −8 Original line number Diff line number Diff line Loading @@ -1007,16 +1007,12 @@ public class RecurrencePickerDialog extends DialogFragment implements OnItemSele int markerStart = intervalString.indexOf(INTERVAL_COUNT_MARKER); if (markerStart != -1) { if (markerStart == 0) { mIntervalPreText.setText(""); } else { int postTextStart = markerStart + INTERVAL_COUNT_MARKER.length(); mIntervalPostText.setText(intervalString.substring(postTextStart, intervalString.length()).trim()); mIntervalPreText.setText(intervalString.substring(0, markerStart).trim()); } } } /** * Update the "Repeat for N events" end option with the proper string values Loading Loading
src/com/android/calendar/recurrencepicker/RecurrencePickerDialog.java +4 −8 Original line number Diff line number Diff line Loading @@ -1007,16 +1007,12 @@ public class RecurrencePickerDialog extends DialogFragment implements OnItemSele int markerStart = intervalString.indexOf(INTERVAL_COUNT_MARKER); if (markerStart != -1) { if (markerStart == 0) { mIntervalPreText.setText(""); } else { int postTextStart = markerStart + INTERVAL_COUNT_MARKER.length(); mIntervalPostText.setText(intervalString.substring(postTextStart, intervalString.length()).trim()); mIntervalPreText.setText(intervalString.substring(0, markerStart).trim()); } } } /** * Update the "Repeat for N events" end option with the proper string values Loading