1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 11:24:58 +00:00

LibGUI: Use ColorRole::DisabledText when AbstractView is disabled

And only paint GlyphMapWidget's frame if disabled
This commit is contained in:
thankyouverycool 2023-05-10 17:01:22 -04:00 committed by Andreas Kling
parent ec29d3abae
commit aaf60053f1
2 changed files with 6 additions and 1 deletions

View file

@ -715,7 +715,9 @@ void AbstractView::draw_item_text(Gfx::Painter& painter, ModelIndex const& index
return;
Color text_color;
if (is_selected)
if (!is_enabled())
text_color = palette().color(Gfx::ColorRole::DisabledText);
else if (is_selected)
text_color = is_focused() ? palette().selection_text() : palette().inactive_selection_text();
else
text_color = index.data(ModelRole::ForegroundColor).to_color(palette().color(foreground_role()));