Fix it again

This commit is contained in:
Grishka 2023-06-04 04:50:40 +03:00 committed by sk
parent 5dcd6e5a0d
commit 853124e2ce
1 changed files with 2 additions and 2 deletions

View File

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