mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +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
Notes:
sideshowbarker
2024-07-18 19:26:08 +09:00
Author: https://github.com/IdanHo
Commit: 60f82e0626
Pull-request: https://github.com/SerenityOS/serenity/pull/6453
3 changed files with 10 additions and 0 deletions
|
@ -288,6 +288,7 @@ FontEditorWidget::FontEditorWidget(const String& path, RefPtr<Gfx::BitmapFont>&&
|
|||
|
||||
m_type_combobox->on_change = [this](auto&, const auto& index) {
|
||||
m_edited_font->set_type(static_cast<Gfx::FontTypes>(index.row()));
|
||||
m_glyph_map_widget->reprobe_font();
|
||||
};
|
||||
|
||||
m_presentation_spinbox->on_change = [this, update_demo](int value) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue