From 22e1bd0701b29a36454e07c1b9b83e7f1f801b15 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Mon, 21 Jul 2008 12:28:14 +0000 Subject: [PATCH] DiskProbe also used B_RGB32 instead of B_RGBA32 and would therefore display a black background on the icon. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26541 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/diskprobe/ProbeView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/diskprobe/ProbeView.cpp b/src/apps/diskprobe/ProbeView.cpp index d928b01dad..48da77b6b2 100644 --- a/src/apps/diskprobe/ProbeView.cpp +++ b/src/apps/diskprobe/ProbeView.cpp @@ -262,7 +262,7 @@ IconView::UpdateIcon() { if (fBitmap == NULL) #ifdef HAIKU_TARGET_PLATFORM_HAIKU - fBitmap = new BBitmap(BRect(0, 0, 31, 31), B_RGB32); + fBitmap = new BBitmap(BRect(0, 0, 31, 31), B_RGBA32); #else fBitmap = new BBitmap(BRect(0, 0, 31, 31), B_CMAP8); #endif