Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b121538e authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Tune maximum keypress duration to 100 milliseconds

Bug: 8556975
Change-Id: If7839c5764f7a269243a9570c0b7782b6f7ee73b
parent e8336aa8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>
+1 −1
Original line number Diff line number Diff line
@@ -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) {