From 40c86618c1dab44ccb4fe1ae3e7eee88f4cfb998 Mon Sep 17 00:00:00 2001 From: Ken Wakasa Date: Wed, 30 Jun 2010 12:38:41 +0900 Subject: No capitalization for inputs from the symbols keyboard. bug: 2220892 Change-Id: I832e855e8882c0ccbc48505acce5b605761cd93a --- java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java') diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java b/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java index 6b8d4f890..7f35ea98e 100644 --- a/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java +++ b/java/src/com/android/inputmethod/latin/LatinKeyboardBaseView.java @@ -590,7 +590,7 @@ public class LatinKeyboardBaseView extends View implements View.OnClickListener dismissPopupKeyboard(); } - private CharSequence adjustCase(CharSequence label) { + protected CharSequence adjustCase(CharSequence label) { if (mKeyboard.isShifted() && label != null && label.length() < 3 && Character.isLowerCase(label.charAt(0))) { label = label.toString().toUpperCase(); -- cgit v1.2.3-83-g751a