Skip to content

Commit

Permalink
Fixing a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Jocelyn Becker committed Jan 23, 2018
1 parent dc72e2e commit 99fb397
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public MyCanvasView(Context context, AttributeSet attributeSet) {
mPaint.setColor(backgroundColor);
// Smoothes out edges of what is drawn without affecting shape.
mPaint.setAntiAlias(true);
// Dithering affects how colors with higher-precision than the device
// are down-sampled.
// Dithering affects how colors with higher-precision
// than the device are down-sampled.
mPaint.setDither(true);
mPaint.setStyle(Paint.Style.STROKE); // default: FILL
mPaint.setStrokeJoin(Paint.Join.ROUND); // default: MITER
Expand Down

0 comments on commit 99fb397

Please sign in to comment.