Merge "Fix swapped alphabet and symbols keyboards"

main
Tadashi G. Takaoka 2011-12-16 04:15:35 -08:00 committed by Android (Google) Code Review
commit 7c69397f14
1 changed files with 2 additions and 2 deletions

View File

@ -303,13 +303,13 @@ public class KeyboardSwitcher implements KeyboardState.SwitchActions,
// Implements {@link KeyboardState.SwitchActions}.
@Override
public void setSymbolsKeyboard() {
setKeyboard(mKeyboardSet.getMainKeyboard());
setKeyboard(mKeyboardSet.getSymbolsKeyboard());
}
// Implements {@link KeyboardState.SwitchActions}.
@Override
public void setAlphabetKeyboard() {
setKeyboard(mKeyboardSet.getSymbolsKeyboard());
setKeyboard(mKeyboardSet.getMainKeyboard());
}
// Implements {@link KeyboardState.SwitchActions}.