am 4456d1a8: Merge "Have double-space-to-period cancel leave a single space"
* commit '4456d1a8c18a4c674c8394570550f2977f5f117b': Have double-space-to-period cancel leave a single spacemain
commit
37fa494cd5
|
@ -654,9 +654,11 @@ public final class RichInputConnection {
|
|||
+ "\"" + periodSpace + "\" just before the cursor.");
|
||||
return false;
|
||||
}
|
||||
// Double-space results in ". ". A backspace to cancel this should result in a single
|
||||
// space in the text field, so we replace ". " with a single space.
|
||||
deleteSurroundingText(2, 0);
|
||||
final String doubleSpace = " ";
|
||||
commitText(doubleSpace, 1);
|
||||
final String singleSpace = " ";
|
||||
commitText(singleSpace, 1);
|
||||
if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) {
|
||||
ResearchLogger.richInputConnection_revertDoubleSpacePeriod();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue