diff options
author | 2010-03-05 21:21:20 -0800 | |
---|---|---|
committer | 2010-03-05 21:21:20 -0800 | |
commit | abd5e5867c25273f32a6ffa63812b62b69d91f2d (patch) | |
tree | 7cfb3d87b4566cfc8d730416c628211bccf5f097 | |
parent | d212c30e6fd3b5a6cbac9cfb1c70c746507f9bfd (diff) | |
download | latinime-abd5e5867c25273f32a6ffa63812b62b69d91f2d.tar.gz latinime-abd5e5867c25273f32a6ffa63812b62b69d91f2d.tar.xz latinime-abd5e5867c25273f32a6ffa63812b62b69d91f2d.zip |
Use KEYBOARD_TAP instead of VIRTUAL_KEY for vibration
-rw-r--r-- | src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |