1
0
Fork 0

fixed a regression, causing ABC auto-accept time setting to be ignored

This commit is contained in:
sspanak 2024-04-11 12:40:55 +03:00 committed by Dimo Karaivanov
parent c2540fa28e
commit df69ec613a

View file

@ -6,7 +6,7 @@ class SettingsTyping extends SettingsInput {
SettingsTyping(Context context) { super(context); }
public int getAbcAutoAcceptTimeout() {
int time = getStringifiedInt("pref_abc_auto_accept_timeout", 800);
int time = getStringifiedInt("pref_abc_auto_accept_time", 800);
return time > 0 ? time + getKeyPadDebounceTime() : time;
}
public boolean getAutoSpace() { return prefs.getBoolean("auto_space", true); }