mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-04-04 11:20:51 +02:00
Fix possible NPE in color picker dialog
This commit is contained in:
parent
c4621b0de3
commit
b354b32bb7
@ -55,7 +55,8 @@ public class AlphaPatternDrawable extends Drawable {
|
||||
|
||||
@Override
|
||||
public void draw(Canvas canvas) {
|
||||
canvas.drawBitmap(mBitmap, null, getBounds(), mPaint);
|
||||
if (mBitmap != null)
|
||||
canvas.drawBitmap(mBitmap, null, getBounds(), mPaint);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user