HaikuDepot: Fix featured package icon drawing transparency

Change-Id: I4ed26754ef5c0bfb0638de1703ece7d84fadf12a
Reviewed-on: https://review.haiku-os.org/443
Reviewed-by: Andrew Lindesay <[email protected]>
This commit is contained in:
David Murphy
2018-08-06 23:41:06 +00:00
committed by waddlesplash
parent 410632da71
commit bbf16bc67a
@@ -86,7 +86,7 @@ BitmapView::Draw(BRect updateRect)
bounds.right = ceilf(bounds.left + width);
bounds.bottom = ceilf(bounds.top + height);
SetDrawingMode(B_OP_OVER);
SetDrawingMode(B_OP_ALPHA);
DrawBitmap(fBitmap, bitmapBounds, bounds, B_FILTER_BITMAP_BILINEAR);
}