Skip to content

Commit

Permalink
Merge pull request #2622 from patrick-iv/fix_circle_inherit_alpha
Browse files Browse the repository at this point in the history
Fix circles inherit alpha #2620
  • Loading branch information
danielgindi authored Feb 21, 2017
2 parents 886cc9f + 30a3317 commit 31b6022
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ protected void drawCircles(Canvas c) {
Bitmap circleBitmap = imageCache.getBitmap(j);

if (circleBitmap != null) {
c.drawBitmap(circleBitmap, mCirclesBuffer[0] - circleRadius, mCirclesBuffer[1] - circleRadius, mRenderPaint);
c.drawBitmap(circleBitmap, mCirclesBuffer[0] - circleRadius, mCirclesBuffer[1] - circleRadius, null);
}
}
}
Expand Down

0 comments on commit 31b6022

Please sign in to comment.