From 220f79d835ee716c5ba41a026b466c0695e236be Mon Sep 17 00:00:00 2001 From: looncraz Date: Sun, 17 Jan 2016 12:20:13 +0000 Subject: [PATCH] Deskbar TimeView Text Render Fix Erroneous use of SetLowUIColor(ViewUIColor()) when the old API was more appropriate resulted in the tint value being ignored which resulted in some text rendering issues with certain color combinations and LCD subpixel aliasing. Fixes ticket# 12596 Signed-off-by: Augustin Cavalier --- src/apps/deskbar/TimeView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/deskbar/TimeView.cpp b/src/apps/deskbar/TimeView.cpp index 7c0803469b..25b54e6501 100644 --- a/src/apps/deskbar/TimeView.cpp +++ b/src/apps/deskbar/TimeView.cpp @@ -152,7 +152,7 @@ TTimeView::Draw(BRect /*updateRect*/) PushState(); SetHighColor(ViewColor()); - SetLowUIColor(ViewUIColor()); + SetLowColor(ViewColor()); FillRect(Bounds()); SetHighUIColor(B_MENU_ITEM_TEXT_COLOR);