fixed a regression, causing ABC auto-accept time setting to be ignored
This commit is contained in:
parent
c2540fa28e
commit
df69ec613a
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ class SettingsTyping extends SettingsInput {
|
||||||
SettingsTyping(Context context) { super(context); }
|
SettingsTyping(Context context) { super(context); }
|
||||||
|
|
||||||
public int getAbcAutoAcceptTimeout() {
|
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;
|
return time > 0 ? time + getKeyPadDebounceTime() : time;
|
||||||
}
|
}
|
||||||
public boolean getAutoSpace() { return prefs.getBoolean("auto_space", true); }
|
public boolean getAutoSpace() { return prefs.getBoolean("auto_space", true); }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue