Omit a bogus paramter to drawBitmap

It is unnecessary, wrong and causes problems if the bitmap needs to be scaled down
This commit is contained in:
Christopher Eby 2010-02-20 14:08:31 -06:00
parent d7f3eaa442
commit 377984afaf

@ -95,7 +95,7 @@ public class CoverView extends View {
Bitmap cover = song.coverPath == null ? null : BitmapFactory.decodeFile(song.coverPath);
if (cover != null) {
RectF dest = scale(cover, width, height);
canvas.drawBitmap(cover, new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()), dest, paint);
canvas.drawBitmap(cover, null, dest, paint);
cover.recycle();
cover = null;
}