mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:18:12 +00:00
FontEditor: Update GlyphMap on font type change
Since font type changes also change the amount of glyphs in a font, the glyph map has to be re-rendered to properly showcase the change.
This commit is contained in:
parent
f461ee7d01
commit
60f82e0626
3 changed files with 10 additions and 0 deletions
|
@ -90,6 +90,14 @@ void GlyphMapWidget::update_glyph(int glyph)
|
|||
update(get_outer_rect(glyph));
|
||||
}
|
||||
|
||||
void GlyphMapWidget::reprobe_font()
|
||||
{
|
||||
VERIFY(m_font);
|
||||
m_glyph_count = m_font->glyph_count();
|
||||
m_selected_glyph = 0;
|
||||
update();
|
||||
}
|
||||
|
||||
void GlyphMapWidget::paint_event(GUI::PaintEvent& event)
|
||||
{
|
||||
GUI::Frame::paint_event(event);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue