hrev53417 adds 1 changeset to branch 'master'
old head: 06f4ddb09c8b395b1222a33330f7b8bc09674980
new head: 178d693469458376765a10cd5d7c945279fa05c6
overview:
https://git.haiku-os.org/haiku/log/?qt=range&q=178d69346945+%5E06f4ddb09c8b
----------------------------------------------------------------------------
178d69346945: 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 <superstippi@xxxxxx>
[ Mikael Konradsson <mikael.konradsson@xxxxxxxxxxx> ]
----------------------------------------------------------------------------
Revision: hrev53417
Commit: 178d693469458376765a10cd5d7c945279fa05c6
URL: https://git.haiku-os.org/haiku/commit/?id=178d69346945
Author: Mikael Konradsson <mikael.konradsson@xxxxxxxxxxx>
Date: Thu Aug 29 17:11:58 2019 UTC
Committer: Stephan Aßmus <superstippi@xxxxxx>
Commit-Date: Thu Aug 29 15:23:30 2019 UTC
----------------------------------------------------------------------------
1 file changed, 1 insertion(+), 1 deletion(-)
src/apps/diskusage/PieView.cpp | 2 +-
----------------------------------------------------------------------------
diff --git a/src/apps/diskusage/PieView.cpp b/src/apps/diskusage/PieView.cpp
index cdb4942794..f0d7684060 100644
--- a/src/apps/diskusage/PieView.cpp
+++ b/src/apps/diskusage/PieView.cpp
@@ -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));
}