mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-25 11:22:20 +00:00
properly reload emoji keyboards (fixes split layout change not shown)
This commit is contained in:
parent
7e59bcc799
commit
46f9227615
1 changed files with 5 additions and 3 deletions
|
@ -515,9 +515,11 @@ public final class KeyboardSwitcher implements KeyboardState.SwitchActions {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void reloadKeyboard() {
|
public void reloadKeyboard() {
|
||||||
if (mCurrentInputView != null)
|
if (mCurrentInputView == null)
|
||||||
loadKeyboard(mLatinIME.getCurrentInputEditorInfo(), Settings.getValues(),
|
return;
|
||||||
mLatinIME.getCurrentAutoCapsState(), mLatinIME.getCurrentRecapitalizeState());
|
mEmojiPalettesView.clearKeyboardCache();
|
||||||
|
loadKeyboard(mLatinIME.getCurrentInputEditorInfo(), Settings.getValues(),
|
||||||
|
mLatinIME.getCurrentAutoCapsState(), mLatinIME.getCurrentRecapitalizeState());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue