1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 03:55:07 +00:00

LibGUI: Use SystemColor::Text in more places

This commit is contained in:
Andreas Kling 2019-12-24 01:29:18 +01:00
parent 79f7482ad3
commit 9171aef724
6 changed files with 9 additions and 7 deletions

View file

@ -178,7 +178,7 @@ void GTreeView::paint_event(GPaintEvent& event)
bool is_selected_row = selection().contains(index);
Color text_color = Color::Black;
Color text_color = SystemColor::Text;
if (is_selected_row)
text_color = Color::White;
@ -226,7 +226,7 @@ void GTreeView::paint_event(GPaintEvent& event)
painter.blit(cell_rect.location(), *bitmap, bitmap->rect());
} else {
if (!is_selected_row)
text_color = model.data(cell_index, GModel::Role::ForegroundColor).to_color(Color::Black);
text_color = model.data(cell_index, GModel::Role::ForegroundColor).to_color(SystemColor::Text);
painter.draw_text(cell_rect, data.to_string(), font, column_metadata.text_alignment, text_color, TextElision::Right);
}
}