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 <waddlesplash@gmail.com>
This commit is contained in:
looncraz 2016-01-17 12:20:13 +00:00 committed by Augustin Cavalier
parent 7beac31fbc
commit 220f79d835

View File

@ -152,7 +152,7 @@ TTimeView::Draw(BRect /*updateRect*/)
PushState();
SetHighColor(ViewColor());
SetLowUIColor(ViewUIColor());
SetLowColor(ViewColor());
FillRect(Bounds());
SetHighUIColor(B_MENU_ITEM_TEXT_COLOR);