am 29f37e15: Merge "Text selection: When user reaches midpoint jump to end of word" into mnc-dev

* commit '29f37e15975dec1fbb519398e5e80b16d61a5d0c':
  Text selection: When user reaches midpoint jump to end of word
This commit is contained in:
Mady Mellor
2015-06-26 17:47:43 +00:00
committed by Android Git Automerger

View File

@@ -4173,7 +4173,7 @@ public class Editor {
if (!mInWord || currLine < mPrevLine) {
// We're not in a word, or we're on a different line so we'll expand by
// word. First ensure the user has at least entered the next word.
int offsetToWord = Math.min((end - start) / 2, 2);
int offsetToWord = (end - start) / 2;
if (offset <= end - offsetToWord || currLine < mPrevLine) {
offset = start;
} else {
@@ -4354,7 +4354,7 @@ public class Editor {
if (!mInWord || currLine > mPrevLine) {
// We're not in a word, or we're on a different line so we'll expand by
// word. First ensure the user has at least entered the next word.
int midPoint = Math.min((end - start) / 2, 2);
int midPoint = (end - start) / 2;
if (offset >= start + midPoint || currLine > mPrevLine) {
offset = end;
} else {