diff options
| author | 2015-04-28 04:58:42 +0000 | |
|---|---|---|
| committer | 2015-04-28 04:58:45 +0000 | |
| commit | d2b9bd80a20e5339bd2555d83d11a5cd88a20034 (patch) | |
| tree | 52af68bd400b449388de9e708f57a3c5432395c1 | |
| parent | 7bdd6aa1a4fd0f02184dc39fb43a2096fbfb6e1f (diff) | |
| parent | 6cda1e28e3fc753d5e55a857bf827da87233a107 (diff) | |
Merge "Fix: End handle disappears when the selection is short." into mnc-dev
| -rw-r--r-- | core/java/android/widget/Editor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/widget/Editor.java b/core/java/android/widget/Editor.java index f1be434b479d..39b99073675f 100644 --- a/core/java/android/widget/Editor.java +++ b/core/java/android/widget/Editor.java @@ -3563,7 +3563,7 @@ public class Editor { return false; } - return isPositionVisible(mPositionX + mHotspotX, mPositionY); + return isPositionVisible(mPositionX + mHotspotX + getHorizontalOffset(), mPositionY); } public abstract int getCurrentCursorOffset(); |