Don't reset the value needed before it's used
Nice recipe for failure Bug: 13387534 Change-Id: Ida1978449c1997587b2ec0955c5c94fcef336121main
parent
e07a777ed6
commit
e93a7232d1
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue