Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
035c68a1
Commit
035c68a1
authored
11 years ago
by
Tadashi G. Takaoka
Committed by
Android Git Automerger
11 years ago
Browse files
Options
Downloads
Plain Diff
am
b121538e
: Tune maximum keypress duration to 100 milliseconds
* commit '
b121538e
': Tune maximum keypress duration to 100 milliseconds
parents
94c54eca
b121538e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/res/values/config.xml
+1
-1
1 addition, 1 deletion
java/res/values/config.xml
java/src/com/android/inputmethod/latin/SeekBarDialogPreference.java
+1
-1
1 addition, 1 deletion
...om/android/inputmethod/latin/SeekBarDialogPreference.java
with
2 additions
and
2 deletions
java/res/values/config.xml
+
1
−
1
View file @
035c68a1
...
@@ -31,7 +31,7 @@
...
@@ -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"
>
25
0
</integer>
<!-- milliseconds -->
<integer
name=
"config_max_vibration_duration"
>
10
0
</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>
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/SeekBarDialogPreference.java
+
1
−
1
View file @
035c68a1
...
@@ -59,7 +59,7 @@ public final class SeekBarDialogPreference extends DialogPreference
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment