Merge "Don't reset the value needed before it's used"

main
Jean Chalard 2014-03-12 08:04:42 +00:00 committed by Android (Google) Code Review
commit 13b446b8fb
1 changed files with 2 additions and 2 deletions

View File

@ -357,9 +357,9 @@ public final class RichInputConnection {
mExpectedSelEnd -= beforeLength;
} else {
// There are fewer characters before the cursor in the buffer than we are being asked to
// delete. Only delete what is there.
mExpectedSelStart = 0;
// delete. Only delete what is there, and update the end with the amount deleted.
mExpectedSelEnd -= mExpectedSelStart;
mExpectedSelStart = 0;
}
if (null != mIC) {
mIC.deleteSurroundingText(beforeLength, afterLength);