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

Commit 160b8a9f authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 25522 into eclair

* changes:
  Second try at fixing replacement of a range of digits with a pause.
parents 30a423c0 1e2d3a22
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1024,8 +1024,7 @@ public class TwelveKeyDialer extends Activity implements View.OnClickListener,
                // position and update the mDigits.
                digits.replace(selectionStart, selectionStart, newDigits);
            } else {
                digits.delete(selectionStart, selectionEnd);
                digits.replace(selectionStart, selectionStart, newDigits);
                digits.replace(selectionStart, selectionEnd, newDigits);
            }
        } else {
            int len = mDigits.length();