[go: nahoru, domu]

Skip to content

Commit

Permalink
Add missing getter for color filter
Browse files Browse the repository at this point in the history
  • Loading branch information
hdodenhof committed Apr 25, 2016
1 parent 3d8ea5c commit a50a1c1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,11 @@ public void setColorFilter(ColorFilter cf) {
invalidate();
}

@Override
public ColorFilter getColorFilter() {
return mColorFilter;
}

private void applyColorFilter() {
if (mBitmapPaint != null) {
mBitmapPaint.setColorFilter(mColorFilter);
Expand Down

0 comments on commit a50a1c1

Please sign in to comment.