summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Chris Göllner <chrisgollner@google.com> 2024-05-31 11:25:15 +0100
committer Chris Göllner <chrisgollner@google.com> 2024-05-31 11:25:31 +0100
commit089c96307f5dfcb51ff96913080c76f630b912a4 (patch)
tree25c6f56d0cfeb08cc3444f952799dabb3937374f
parent549e4298f871661deae543f7afa5b21b2861444d (diff)
Shortcut Helper: fix wrong "open calendar" shortcut on the phone version
The shortcut is ACTION + K and not ACTION + L. This was already correct for the large screen version of the helper, but wrong for the small screen version. Fixes: 309569033 Test: Manually Flag: NONE Trivial change Change-Id: I1efff8e4e66813e704a8d66cf699a0954a77af44
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java b/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java
index d00916a1c1a8..c742f6413022 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcuts.java
@@ -610,7 +610,7 @@ public final class KeyboardShortcuts {
keyboardShortcutInfoAppItems.add(new KeyboardShortcutInfo(
mContext.getString(R.string.keyboard_shortcut_group_applications_calendar),
calendarIcon,
- KeyEvent.KEYCODE_L,
+ KeyEvent.KEYCODE_K,
KeyEvent.META_META_ON));
}