[haiku-commits] haiku: hrev52183 - src/apps/haikudepot/ui_generic

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 6 Aug 2018 19:41:09 -0400 (EDT)

hrev52183 adds 1 changeset to branch 'master'
old head: 410632da71680ed6a6762201e1c11b15d074ca42
new head: bbf16bc67a8ad632d3d6f890fab2a191b6c03970
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=bbf16bc67a8a+%5E410632da7168

----------------------------------------------------------------------------

bbf16bc67a8a: HaikuDepot: Fix featured package icon drawing transparency
  
  Change-Id: I4ed26754ef5c0bfb0638de1703ece7d84fadf12a
  Reviewed-on: https://review.haiku-os.org/443
  Reviewed-by: Andrew Lindesay <apl@xxxxxxxxxxxxxx>

                                       [ David Murphy <murphman@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev52183
Commit:      bbf16bc67a8ad632d3d6f890fab2a191b6c03970
URL:         https://git.haiku-os.org/haiku/commit/?id=bbf16bc67a8a
Author:      David Murphy <murphman@xxxxxxxxx>
Date:        Mon Aug  6 06:46:10 2018 UTC
Committer:   waddlesplash <waddlesplash@xxxxxxxxx>
Commit-Date: Mon Aug  6 23:41:06 2018 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
src/apps/haikudepot/ui_generic/BitmapView.cpp | 2 +-

----------------------------------------------------------------------------

diff --git a/src/apps/haikudepot/ui_generic/BitmapView.cpp 
b/src/apps/haikudepot/ui_generic/BitmapView.cpp
index e00e122701..9eab1a8d3a 100644
--- a/src/apps/haikudepot/ui_generic/BitmapView.cpp
+++ b/src/apps/haikudepot/ui_generic/BitmapView.cpp
@@ -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);
 }
 


Other related posts:

  • » [haiku-commits] haiku: hrev52183 - src/apps/haikudepot/ui_generic - waddlesplash