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

Unverified Commit bc36035d authored by Georg Veichtlbauer's avatar Georg Veichtlbauer Committed by Michael Bestas
Browse files

LatinIME: Never use emoji action key in place of enter

Change-Id: I3359bcee3da4fc7fbdfe655e959d25c26d8cf585
parent ce04ea27
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -247,13 +247,6 @@
        </case>
        <!-- Smiley in textShortMessage field.
             This <case> should be after Shift + Enter <case> and before any of action <case>. -->
        <case
            latin:mode="im"
        >
            <key-style
                latin:styleName="enterKeyStyle"
                latin:parentStyle="emojiKeyStyle" />
        </case>
        <case
            latin:imeAction="actionGo"
        >
+1 −1
Original line number Diff line number Diff line
@@ -161,7 +161,7 @@ public class LayoutCustomizer extends AbstractLayoutBase {
     * @return the array of {@link ExpectedKey} that should be placed as an enter key.
     */
    public ExpectedKey getEnterKey(final boolean isPhone) {
        return isPhone ? key(ENTER_KEY, EMOJI_ACTION_KEY) : ENTER_KEY;
        return ENTER_KEY;
    }

    /**