diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/settings/inputmethod/InputMethodConfig.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/inputmethod/InputMethodConfig.java b/src/com/android/settings/inputmethod/InputMethodConfig.java index 2c336dbf3..d08f450c8 100644 --- a/src/com/android/settings/inputmethod/InputMethodConfig.java +++ b/src/com/android/settings/inputmethod/InputMethodConfig.java @@ -210,7 +210,7 @@ public class InputMethodConfig extends SettingsPreferenceFragment { chkbxPref.setTitle(label); keyboardSettingsCategory.addPreference(chkbxPref); // Disable the toggle if it's the only keyboard in the system, or it's a system IME. - if (!mHaveHardKeyboard && (imiSize <= 1 || isSystemIME)) { + if (imiSize <= 1 || isSystemIME) { chkbxPref.setEnabled(false); } |