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

Commit d86c1065 authored by Peeyush Agarwal's avatar Peeyush Agarwal
Browse files

Correct the keyboard shortcut for SMS

Earlier, there was a keyboard shortcut for IM. Replace it with SMS +
Meta_S.

Bug: 32137976
Change-Id: Id8978126d16dcbea4eb993cd067a92257895b5da
Fixes: 32137976
Test: manual
parent 372cede1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1434,8 +1434,8 @@
    <string name="keyboard_shortcut_group_applications_contacts">Contacts</string>
    <!-- User visible title for the keyboard shortcut that takes the user to the email app. -->
    <string name="keyboard_shortcut_group_applications_email">Email</string>
    <!-- User visible title for the keyboard shortcut that takes the user to the instant messaging app. -->
    <string name="keyboard_shortcut_group_applications_im">IM</string>
    <!-- User visible title for the keyboard shortcut that takes the user to the SMS messaging app. -->
    <string name="keyboard_shortcut_group_applications_sms">SMS</string>
    <!-- User visible title for the keyboard shortcut that takes the user to the music app. -->
    <string name="keyboard_shortcut_group_applications_music">Music</string>
    <!-- User visible title for the keyboard shortcut that takes the user to the YouTube app. -->
+2 −2
Original line number Diff line number Diff line
@@ -488,9 +488,9 @@ public final class KeyboardShortcuts {
        final Icon messagingIcon = getIconForIntentCategory(Intent.CATEGORY_APP_MESSAGING, userId);
        if (messagingIcon != null) {
            keyboardShortcutInfoAppItems.add(new KeyboardShortcutInfo(
                    mContext.getString(R.string.keyboard_shortcut_group_applications_im),
                    mContext.getString(R.string.keyboard_shortcut_group_applications_sms),
                    messagingIcon,
                    KeyEvent.KEYCODE_T,
                    KeyEvent.KEYCODE_S,
                    KeyEvent.META_META_ON));
        }