am b121538e: Tune maximum keypress duration to 100 milliseconds
* commit 'b121538e0c68e0cefded2075ff3b7fb0750e2b44': Tune maximum keypress duration to 100 millisecondsmain
commit
035c68a19a
|
@ -31,7 +31,7 @@
|
|||
<bool name="config_default_next_word_prediction">true</bool>
|
||||
<bool name="config_default_sound_enabled">false</bool>
|
||||
<bool name="config_default_vibration_enabled">true</bool>
|
||||
<integer name="config_max_vibration_duration">250</integer> <!-- milliseconds -->
|
||||
<integer name="config_max_vibration_duration">100</integer> <!-- milliseconds -->
|
||||
<integer name="config_delay_update_suggestions">100</integer>
|
||||
<integer name="config_delay_update_old_suggestions">300</integer>
|
||||
<integer name="config_delay_update_shift_state">100</integer>
|
||||
|
|
|
@ -59,7 +59,7 @@ public final class SeekBarDialogPreference extends DialogPreference
|
|||
|
||||
public void setInterface(final ValueProxy proxy) {
|
||||
mValueProxy = proxy;
|
||||
setSummary(getValueText(proxy.readValue(getKey())));
|
||||
setSummary(getValueText(clipValue(proxy.readValue(getKey()))));
|
||||
}
|
||||
|
||||
private String getValueText(final int value) {
|
||||
|
|
Loading…
Reference in New Issue