Skip to content
Snippets Groups Projects
Commit 9ebffd93 authored by Brandon Ballinger's avatar Brandon Ballinger Committed by The Android Open Source Project
Browse files

Merge branch 'readonly-p4-donut' into donut

parents b642d30b c5bb4591
No related branches found
No related tags found
No related merge requests found
......@@ -115,6 +115,7 @@ public class KeyboardSwitcher {
void setKeyboardMode(int mode, int imeOptions, boolean isSymbols) {
mMode = mode;
mImeOptions = imeOptions;
mIsSymbols = isSymbols;
mInputView.setPreviewEnabled(true);
KeyboardId id = getKeyboardId(mode, imeOptions, isSymbols);
LatinKeyboard keyboard = getKeyboard(id);
......@@ -226,7 +227,6 @@ public class KeyboardSwitcher {
}
void toggleSymbols() {
mIsSymbols = !mIsSymbols;
setKeyboardMode(mMode, mImeOptions, mIsSymbols);
setKeyboardMode(mMode, mImeOptions, !mIsSymbols);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment