Merge "Remove audio and haptic feedback while key repeating"

main
Ken Wakasa 2013-08-13 21:50:20 +00:00 committed by Android (Google) Code Review
commit ae59ce0262
1 changed files with 2 additions and 2 deletions

View File

@ -2703,8 +2703,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// No need to feedback while sliding input.
return;
}
if (isRepeatKey && code == Constants.CODE_DELETE && !mConnection.canDeleteCharacters()) {
// No need to feedback when repeating delete key will have no effect.
if (isRepeatKey) {
// No need to feedback when repeating key.
return;
}
AudioAndHapticFeedbackManager.getInstance().hapticAndAudioFeedback(code, keyboardView);