From abd5e5867c25273f32a6ffa63812b62b69d91f2d Mon Sep 17 00:00:00 2001 From: Amith Yamasani Date: Fri, 5 Mar 2010 21:21:20 -0800 Subject: [PATCH] Use KEYBOARD_TAP instead of VIRTUAL_KEY for vibration --- src/com/android/inputmethod/latin/LatinIME.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/inputmethod/latin/LatinIME.java b/src/com/android/inputmethod/latin/LatinIME.java index 18b277c5a..cb3711cb5 100644 --- a/src/com/android/inputmethod/latin/LatinIME.java +++ b/src/com/android/inputmethod/latin/LatinIME.java @@ -1737,7 +1737,7 @@ public class LatinIME extends InputMethodService return; } if (mInputView != null) { - mInputView.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY, + mInputView.performHapticFeedback(HapticFeedbackConstants.KEYBOARD_TAP, HapticFeedbackConstants.FLAG_IGNORE_GLOBAL_SETTING); } }