From d1d607287de4d0060a862aa19cb128b7c256767c Mon Sep 17 00:00:00 2001
From: "Tadashi G. Takaoka" <takaoka@google.com>
Date: Tue, 13 Aug 2013 17:02:49 +0900
Subject: [PATCH] Remove audio and haptic feedback while key repeating

Bug: 6522943
Change-Id: Iad1b11172e47bfbae2b4129361a56b9d793f8f62
---
 java/src/com/android/inputmethod/latin/LatinIME.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index a7798e335b..b14ee317eb 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -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);
-- 
GitLab