summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Josep del Rio <joseprio@google.com> 2025-01-28 14:07:10 +0000
committer Vaibhav Devmurari <vdevmurari@google.com> 2025-01-28 10:48:59 -0800
commitc3208338cff0b47417becd2beee814883661e4eb (patch)
treeef329d4a0c5fa58f59465737d62c6c8d9d0bf435
parentb6fcc57dc3c9731a255e7e2ab08a319aec0f83a7 (diff)
Fix: Change screenshot shortcut to Meta+S in Shortcut helper list UI
Bug: 370930887 Test: Flashed on device, tried shortcut, checked shortcut helper Flag: EXEMPT bugfix Change-Id: I8637f3fb537b12c5e93d6058c8e34304f9df1642
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcutListSearch.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcutListSearch.java b/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcutListSearch.java
index 2544323d83d5..79a872edd2c5 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcutListSearch.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/KeyboardShortcutListSearch.java
@@ -573,13 +573,13 @@ public final class KeyboardShortcutListSearch {
Pair.create(KeyEvent.KEYCODE_ESCAPE, KeyEvent.META_META_ON),
Pair.create(KeyEvent.KEYCODE_DEL, KeyEvent.META_META_ON),
Pair.create(KeyEvent.KEYCODE_DPAD_LEFT, KeyEvent.META_META_ON))),
- /* Take a full screenshot: Meta + Ctrl + S */
+ /* Take a full screenshot: Meta + S */
new ShortcutKeyGroupMultiMappingInfo(
context.getString(R.string.group_system_full_screenshot),
Arrays.asList(
Pair.create(
KeyEvent.KEYCODE_S,
- KeyEvent.META_META_ON | KeyEvent.META_CTRL_ON))),
+ KeyEvent.META_META_ON))),
/* Access list of system / apps shortcuts: Meta + / */
new ShortcutKeyGroupMultiMappingInfo(
context.getString(R.string.group_system_access_system_app_shortcuts),