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
d7309ec469
|
@ -654,9 +654,11 @@ public final class RichInputConnection {
|
||||||
+ "\"" + periodSpace + "\" just before the cursor.");
|
+ "\"" + periodSpace + "\" just before the cursor.");
|
||||||
return false;
|
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);
|
deleteSurroundingText(2, 0);
|
||||||
final String doubleSpace = " ";
|
final String singleSpace = " ";
|
||||||
commitText(doubleSpace, 1);
|
commitText(singleSpace, 1);
|
||||||
if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) {
|
if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) {
|
||||||
ResearchLogger.richInputConnection_revertDoubleSpacePeriod();
|
ResearchLogger.richInputConnection_revertDoubleSpacePeriod();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue