DiskUsage: Fixed scanning status label text color for dark mode.

Change-Id: Iac5f1649c0bd6873448f66a544647e37a542d9b2
Reviewed-on: https://review.haiku-os.org/c/haiku/+/1756
Reviewed-by: Stephan Aßmus <[email protected]>
This commit is contained in:
Mikael Konradsson
2019-08-29 15:23:30 +00:00
committed by Stephan Aßmus
parent 06f4ddb09c
commit 178d693469
+1 -1
View File
@@ -386,7 +386,7 @@ PieView::_DrawProgressBar(BRect updateRect)
float strWidth = StringWidth(task);
bx = (b.left + b.Width() - strWidth) / 2.0;
by -= fFontHeight + 2.0 * kSmallVMargin;
SetHighColor(0, 0, 0);
SetHighColor(ui_color(B_PANEL_TEXT_COLOR));
DrawString(task, BPoint(bx, by));
}