Skip to content

Commit 4feac67

Browse files
Victoria LeaseAndroid Git Automerger
authored andcommitted
am 7c0edba: Merge "Get your own cursor Drawables, WebViewClassic!" into jb-dev
* commit '7c0edba0ab8803ff63ac006c8aead4fa0d1a15d8': Get your own cursor Drawables, WebViewClassic!
2 parents c098ff6 + 7c0edba commit 4feac67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/java/android/webkit/WebViewClassic.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4540,11 +4540,11 @@ private void endSelectingText() {
45404540
private void ensureSelectionHandles() {
45414541
if (mSelectHandleCenter == null) {
45424542
mSelectHandleCenter = mContext.getResources().getDrawable(
4543-
com.android.internal.R.drawable.text_select_handle_middle);
4543+
com.android.internal.R.drawable.text_select_handle_middle).mutate();
45444544
mSelectHandleLeft = mContext.getResources().getDrawable(
4545-
com.android.internal.R.drawable.text_select_handle_left);
4545+
com.android.internal.R.drawable.text_select_handle_left).mutate();
45464546
mSelectHandleRight = mContext.getResources().getDrawable(
4547-
com.android.internal.R.drawable.text_select_handle_right);
4547+
com.android.internal.R.drawable.text_select_handle_right).mutate();
45484548
mHandleAlpha.setAlpha(mHandleAlpha.getAlpha());
45494549
mSelectHandleCenterOffset = new Point(0,
45504550
-mSelectHandleCenter.getIntrinsicHeight());

0 commit comments

Comments
 (0)