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
6e5ca890
Commit
6e5ca890
authored
12 years ago
by
Jean Chalard
Browse files
Options
Downloads
Patches
Plain Diff
Fix a bug where the previous word would not be read correctly
Bug: 6510002 Change-Id: Id30f67e0ca6f7a6fbbbd07922ae19e416c5ef55e
parent
18ce0731
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/latin/EditingUtils.java
+2
-1
2 additions, 1 deletion
java/src/com/android/inputmethod/latin/EditingUtils.java
with
2 additions
and
1 deletion
java/src/com/android/inputmethod/latin/EditingUtils.java
+
2
−
1
View file @
6e5ca890
...
...
@@ -29,7 +29,8 @@ public class EditingUtils {
/**
* Number of characters we want to look back in order to identify the previous word
*/
private
static
final
int
LOOKBACK_CHARACTER_NUM
=
15
;
// Provision for a long word pair and a separator
private
static
final
int
LOOKBACK_CHARACTER_NUM
=
BinaryDictionary
.
MAX_WORD_LENGTH
*
2
+
1
;
private
static
final
int
INVALID_CURSOR_POSITION
=
-
1
;
private
EditingUtils
()
{
...
...
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