Merge "Fix swapped alphabet and symbols keyboards"
This commit is contained in:
commit
7c69397f14
1 changed files with 2 additions and 2 deletions
|
@ -303,13 +303,13 @@ public class KeyboardSwitcher implements KeyboardState.SwitchActions,
|
||||||
// Implements {@link KeyboardState.SwitchActions}.
|
// Implements {@link KeyboardState.SwitchActions}.
|
||||||
@Override
|
@Override
|
||||||
public void setSymbolsKeyboard() {
|
public void setSymbolsKeyboard() {
|
||||||
setKeyboard(mKeyboardSet.getMainKeyboard());
|
setKeyboard(mKeyboardSet.getSymbolsKeyboard());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implements {@link KeyboardState.SwitchActions}.
|
// Implements {@link KeyboardState.SwitchActions}.
|
||||||
@Override
|
@Override
|
||||||
public void setAlphabetKeyboard() {
|
public void setAlphabetKeyboard() {
|
||||||
setKeyboard(mKeyboardSet.getSymbolsKeyboard());
|
setKeyboard(mKeyboardSet.getMainKeyboard());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implements {@link KeyboardState.SwitchActions}.
|
// Implements {@link KeyboardState.SwitchActions}.
|
||||||
|
|
Loading…
Reference in a new issue