am b121538e: Tune maximum keypress duration to 100 milliseconds

* commit 'b121538e0c68e0cefded2075ff3b7fb0750e2b44':
  Tune maximum keypress duration to 100 milliseconds
main
Tadashi G. Takaoka 2013-05-13 04:09:58 -07:00 committed by Android Git Automerger
commit 035c68a19a
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
<bool name="config_default_next_word_prediction">true</bool> <bool name="config_default_next_word_prediction">true</bool>
<bool name="config_default_sound_enabled">false</bool> <bool name="config_default_sound_enabled">false</bool>
<bool name="config_default_vibration_enabled">true</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_suggestions">100</integer>
<integer name="config_delay_update_old_suggestions">300</integer> <integer name="config_delay_update_old_suggestions">300</integer>
<integer name="config_delay_update_shift_state">100</integer> <integer name="config_delay_update_shift_state">100</integer>

View File

@ -59,7 +59,7 @@ public final class SeekBarDialogPreference extends DialogPreference
public void setInterface(final ValueProxy proxy) { public void setInterface(final ValueProxy proxy) {
mValueProxy = proxy; mValueProxy = proxy;
setSummary(getValueText(proxy.readValue(getKey()))); setSummary(getValueText(clipValue(proxy.readValue(getKey()))));
} }
private String getValueText(final int value) { private String getValueText(final int value) {