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

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

LatinIME: Add option to always show the emoji key for non-tablets



Includes Iffbd5096d86edd279bc00fbbe4b4ec4d6d1614cc.

Co-authored-by: default avatarLuK1337 <priv.luk@gmail.com>
Change-Id: I5951524caba8413e9a0244ddc43869b4d1c97007
parent 815ee0d8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
    <!-- Whether or not Popup on key press is enabled by default -->
    <bool name="config_default_key_preview_popup">true</bool>
    <bool name="config_default_sound_enabled">false</bool>
    <bool name="config_enable_show_emoji_key_option">true</bool>
    <bool name="config_enable_show_voice_key_option">true</bool>
    <bool name="config_key_selection_by_dragging_finger">true</bool>
    <!-- Showing more keys keyboard, just above the touched point if true, aligned to the key if
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
    <!-- Whether or not Popup on key press is enabled by default -->
    <bool name="config_default_key_preview_popup">false</bool>
    <bool name="config_default_sound_enabled">false</bool>
    <bool name="config_enable_show_emoji_key_option">false</bool>
    <bool name="config_enable_show_voice_key_option">false</bool>
    <bool name="config_key_selection_by_dragging_finger">false</bool>
    <!-- Showing more keys keyboard, just above the touched point if true, aligned to the key if
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
    <!-- Whether or not Popup on key press is enabled by default -->
    <bool name="config_default_key_preview_popup">false</bool>
    <bool name="config_default_sound_enabled">false</bool>
    <bool name="config_enable_show_emoji_key_option">false</bool>
    <bool name="config_enable_show_voice_key_option">false</bool>
    <bool name="config_key_selection_by_dragging_finger">false</bool>
    <!-- Showing more keys keyboard, just above the touched point if true, aligned to the key if
+1 −0
Original line number Diff line number Diff line
@@ -503,6 +503,7 @@
        <attr name="clobberSettingsKey" format="boolean" />
        <attr name="hasShortcutKey" format="boolean" />
        <attr name="numberRowEnabled" format="boolean" />
        <attr name="emojiKeyEnabled" format="boolean" />
        <attr name="languageSwitchKeyEnabled" format="boolean" />
        <attr name="isMultiLine" format="boolean" />
        <attr name="imeAction" format="enum">
+4 −0
Original line number Diff line number Diff line
@@ -43,4 +43,8 @@ disposition rather than other common dispositions for Latin languages. [CHAR LIM
    <!-- Preference item for enabling longpress key hints -->
    <string name="show_longpress_hints">Show long-press key hints</string>
    <string name="show_longpress_hints_summary">Shows long-press hints for supported keys</string>

    <!-- Preference item for always showing the emoji key -->
    <string name="show_emoji_key">Show emoji key</string>
    <string name="show_emoji_key_summary">Always show emoji key. When this option is enabled, the language switch key cannot be shown.</string>
</resources>
Loading