diff options
| author | 2025-01-08 01:38:06 -0800 | |
|---|---|---|
| committer | 2025-01-08 01:38:06 -0800 | |
| commit | 70be04346a0121c735091303c3ace030e4cc8ede (patch) | |
| tree | e28914cddbbed38ef44ca51243401008a0434b03 | |
| parent | b4351c140020bdfa26d8636c1d664159df28db30 (diff) | |
| parent | 4f14778344e0e11fb0a9e1a457044d6e40bc0288 (diff) | |
Merge "Disable config_doubleTapPowerGestureMode on Wear" into main
| -rw-r--r-- | core/res/res/values-watch/config.xml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/core/res/res/values-watch/config.xml b/core/res/res/values-watch/config.xml index e6295ea06177..4ff3f8825cc4 100644 --- a/core/res/res/values-watch/config.xml +++ b/core/res/res/values-watch/config.xml @@ -101,6 +101,13 @@ P.S this is a change only intended for wear devices. --> <bool name="config_enableViewGroupScalingFading">true</bool> - <!-- Allow the gesture to double tap the power button to trigger a target action. --> - <bool name="config_doubleTapPowerGestureEnabled">false</bool> + <!-- Controls the double tap power button gesture to trigger a target action. + 0: Gesture is disabled + 1: Launch camera mode, allowing the user to disable/enable the double tap power gesture + from launching the camera application. + 2: Multi target mode, allowing the user to select one of the targets defined in + config_doubleTapPowerGestureMultiTargetDefaultAction and to disable/enable the double + tap power gesture from triggering the selected target action. + --> + <integer name="config_doubleTapPowerGestureMode">0</integer> </resources> |