mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am cb83b300: Remember shift locked state when switching between Main keyboard and Symbols
* commit 'cb83b300e73700449dec0bd9415d6e1df409c441': Remember shift locked state when switching between Main keyboard and Symbols
This commit is contained in:
commit
d2a18cbded
@ -656,11 +656,16 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
|
||||
return mKeyboardView == null ? 0 : mKeyboardView.getPointerCount();
|
||||
}
|
||||
|
||||
private boolean mPrevMainKeyboardWasShiftLocked;
|
||||
|
||||
private void toggleKeyboardMode() {
|
||||
if (mCurrentId.equals(mMainKeyboardId)) {
|
||||
mPrevMainKeyboardWasShiftLocked = isShiftLocked();
|
||||
setKeyboard(getKeyboard(mSymbolsKeyboardId));
|
||||
} else {
|
||||
setKeyboard(getKeyboard(mMainKeyboardId));
|
||||
setShiftLocked(mPrevMainKeyboardWasShiftLocked);
|
||||
mPrevMainKeyboardWasShiftLocked = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user