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

Commit 4456d1a8 authored by Jean Chalard's avatar Jean Chalard Committed by Android (Google) Code Review
Browse files

Merge "Have double-space-to-period cancel leave a single space"

parents f9456855 522d13c3
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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();
        }