diff options
author | 2013-04-11 08:15:29 +0000 | |
---|---|---|
committer | 2013-04-11 08:15:29 +0000 | |
commit | cd692be1e1151c233d0605d5f8eabbf5c3f2b1ab (patch) | |
tree | f014419a4f1740d05b14e0e890d56c73ebd1af2d /java | |
parent | b5d5190debf667b0faf034f73822b4cee923a36c (diff) | |
parent | e1416b439907a26756d58c6fe5ec6428b9b4e3ab (diff) | |
download | latinime-cd692be1e1151c233d0605d5f8eabbf5c3f2b1ab.tar.gz latinime-cd692be1e1151c233d0605d5f8eabbf5c3f2b1ab.tar.xz latinime-cd692be1e1151c233d0605d5f8eabbf5c3f2b1ab.zip |
Merge "Change the default vibration duration to 20msec"
Diffstat (limited to 'java')
-rw-r--r-- | java/res/values/keypress-vibration-durations.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/java/res/values/keypress-vibration-durations.xml b/java/res/values/keypress-vibration-durations.xml index 9b1d5431e..10400be83 100644 --- a/java/res/values/keypress-vibration-durations.xml +++ b/java/res/values/keypress-vibration-durations.xml @@ -18,13 +18,17 @@ */ --> <resources> + <!-- Build.HARDWARE,duration_in_milliseconds --> <string-array name="keypress_vibration_durations" translatable="false"> - <!-- Build.HARDWARE,duration_in_milliseconds --> + <!-- Nexus S --> <item>herring,5</item> + <!-- Galaxy Nexus --> <item>tuna,5</item> + <!-- Nexus 4 --> <item>mako,5</item> + <!-- Nexus 10 --> <item>manta,16</item> <!-- Default value for unknown device --> - <item>DEFAULT,10</item> + <item>DEFAULT,20</item> </string-array> </resources> |