Merge pull request #2622 from patrick-iv/fix_circle_inherit_alpha
Fix circles inherit alpha #2620
This commit is contained in:
commit
31b60225d0
1 changed files with 1 additions and 1 deletions
|
@ -675,7 +675,7 @@ public class LineChartRenderer extends LineRadarRenderer {
|
|||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue