Skip to content

Commit 9a69fea

Browse files
George MountAndroid (Google) Code Review
authored andcommitted
Merge "Fix location of selection handles on rotated text."
2 parents 8564be6 + b6f3339 commit 9a69fea

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)