Remove flag to ignore user settings from haptic feedback

The keyboard key-press haptic feedback should follow the user
settings for "Touch feedback".

Bug: 185351540
Test: manual
Change-Id: I718d3bf15b1ef841a869a898038d0eca1eca78f0
This commit is contained in:
Lais Andrade 2022-01-17 19:16:47 +00:00
parent 3fd1be7430
commit 97a3132c95

View File

@ -119,8 +119,7 @@ public final class AudioAndHapticFeedbackManager {
// Go ahead with the system default
if (viewToPerformHapticFeedbackOn != null) {
viewToPerformHapticFeedbackOn.performHapticFeedback(
HapticFeedbackConstants.KEYBOARD_TAP,
HapticFeedbackConstants.FLAG_IGNORE_GLOBAL_SETTING);
HapticFeedbackConstants.KEYBOARD_TAP);
}
}