diff options
author | 2010-09-21 10:43:52 -0700 | |
---|---|---|
committer | 2010-09-21 10:43:52 -0700 | |
commit | 051511fa091448edd4787e2ab2b7c8e4845efcd9 (patch) | |
tree | 61dab18345d391e4526c6d32c6f25854559bb769 /java/src | |
parent | a628e46c11c3c7ed17f133d34f732cc54c0f6754 (diff) | |
parent | 1d82ee9a13b1e57af80d2bd0e3f879305bda137d (diff) | |
download | latinime-051511fa091448edd4787e2ab2b7c8e4845efcd9.tar.gz latinime-051511fa091448edd4787e2ab2b7c8e4845efcd9.tar.xz latinime-051511fa091448edd4787e2ab2b7c8e4845efcd9.zip |
am 1d82ee9a: am 56cd6df9: Merge "Space key will no longer auto-repeat" into gingerbread
Merge commit '1d82ee9a13b1e57af80d2bd0e3f879305bda137d'
* commit '1d82ee9a13b1e57af80d2bd0e3f879305bda137d':
Space key will no longer auto-repeat
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinKeyboard.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboard.java b/java/src/com/android/inputmethod/latin/LatinKeyboard.java index caae92363..1414626db 100644 --- a/java/src/com/android/inputmethod/latin/LatinKeyboard.java +++ b/java/src/com/android/inputmethod/latin/LatinKeyboard.java @@ -350,7 +350,6 @@ public class LatinKeyboard extends Keyboard { if (mLocale != null) { mSpaceKey.icon = new BitmapDrawable(mRes, drawSpaceBar(OPACITY_FULLY_OPAQUE, isAutoCompletion, isBlack)); - mSpaceKey.repeatable = mLanguageSwitcher.getLocaleCount() < 2; } else { // sym_keyboard_space_led can be shared with Black and White symbol themes. if (isAutoCompletion) { @@ -360,7 +359,6 @@ public class LatinKeyboard extends Keyboard { mSpaceKey.icon = isBlack ? mRes.getDrawable(R.drawable.sym_bkeyboard_space) : mRes.getDrawable(R.drawable.sym_keyboard_space); } - mSpaceKey.repeatable = true; } } |