Skip to content

Commit b6f3339

Browse files
author
George Mount
committed
Fix location of selection handles on rotated text.
Bug 6206177 Change-Id: If4509b75aa2f71f80e44e3820f69e1844534bed2
1 parent 8879689 commit b6f3339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/java/android/webkit/WebViewClassic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4924,7 +4924,7 @@ private void drawTextSelectionHandles(Canvas canvas) {
49244924
* startX, startY, endX, endY
49254925
*/
49264926
private void getSelectionHandles(int[] handles) {
4927-
handles[0] = mSelectCursorBase.right;
4927+
handles[0] = mSelectCursorBase.left;
49284928
handles[1] = mSelectCursorBase.bottom;
49294929
handles[2] = mSelectCursorExtent.left;
49304930
handles[3] = mSelectCursorExtent.bottom;

0 commit comments

Comments
 (0)