mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:17:45 +00:00
LibGUI: Use system theme when painting GlyphMapWidget focus outline
This commit is contained in:
parent
cf13cf7225
commit
a26e71a137
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ void GlyphMapWidget::paint_event(PaintEvent& event)
|
||||||
} else
|
} else
|
||||||
painter.fill_rect(outer_rect, palette().window());
|
painter.fill_rect(outer_rect, palette().window());
|
||||||
}
|
}
|
||||||
painter.draw_focus_rect(get_outer_rect(m_active_glyph), Gfx::Color::Black);
|
painter.draw_focus_rect(get_outer_rect(m_active_glyph), palette().focus_outline());
|
||||||
}
|
}
|
||||||
|
|
||||||
Optional<int> GlyphMapWidget::glyph_at_position(Gfx::IntPoint position) const
|
Optional<int> GlyphMapWidget::glyph_at_position(Gfx::IntPoint position) const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue