fix incompatibility with upstream bugfix

This commit is contained in:
sk
2023-06-04 23:33:04 +02:00
parent 853124e2ce
commit 0665b8dd3b

View File

@@ -31,9 +31,9 @@ public class ClickableLinksDelegate {
this.view=view;
hlPaint=new Paint();
hlPaint.setAntiAlias(true);
hlPaint.setPathEffect(new CornerPathEffect(dp(3)));
hlPaint.setPathEffect(new CornerPathEffect(V.dp(3)));
hlPaint.setStyle(Paint.Style.FILL_AND_STROKE);
hlPaint.setStrokeWidth(dp(4));
hlPaint.setStrokeWidth(V.dp(4));
gestureDetector = new GestureDetector(view.getContext(), new LinkGestureListener(), view.getHandler());
}