mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-14 14:02:44 +00:00
fix settings not being applied on change (and find a new issue...)
This commit is contained in:
parent
4eadaa8965
commit
ca89eaa51c
2 changed files with 3 additions and 3 deletions
|
@ -880,8 +880,6 @@ public class LatinIME extends InputMethodService implements
|
|||
void onStartInputInternal(final EditorInfo editorInfo, final boolean restarting) {
|
||||
super.onStartInput(editorInfo, restarting);
|
||||
|
||||
reloadIfNecessary();
|
||||
|
||||
final List<Locale> hintLocales = EditorInfoCompatUtils.getHintLocales(editorInfo);
|
||||
if (hintLocales == null) {
|
||||
return;
|
||||
|
@ -903,6 +901,8 @@ public class LatinIME extends InputMethodService implements
|
|||
void onStartInputViewInternal(final EditorInfo editorInfo, final boolean restarting) {
|
||||
super.onStartInputView(editorInfo, restarting);
|
||||
|
||||
reloadIfNecessary();
|
||||
|
||||
mDictionaryFacilitator.onStartInput();
|
||||
// Switch to the null consumer to handle cases leading to early exit below, for which we
|
||||
// also wouldn't be consuming gesture data.
|
||||
|
|
|
@ -17,7 +17,6 @@ import kotlinx.coroutines.flow.MutableStateFlow
|
|||
// make all prefs actually work
|
||||
// appearance
|
||||
// click on bg image does nothing when already set (but works after reload)
|
||||
// narrow key gaps setting is not changing properly?
|
||||
// custom font loading not implemented
|
||||
// have large bg image, and first-time load the keyboard on new search field -> bg image expands full size
|
||||
// advanced
|
||||
|
@ -32,6 +31,7 @@ import kotlinx.coroutines.flow.MutableStateFlow
|
|||
// check dark and light theme (don't have dynamic)
|
||||
// rename both settingsActivities
|
||||
// work on todos in other files
|
||||
// calling KeyboardSwitcher.getInstance().forceUpdateKeyboardTheme(requireContext()) while keyboard is showing shows just full screen background
|
||||
// use better / more structured and clear names and arrangement of files
|
||||
// the prefDef and AllPrefs, also be clear about pref <-> key <-> prefKey (all used, probably should be latter)
|
||||
// there is a lot more ambiguous naming...
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue