1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:37:46 +00:00

FontEditor: Update preview window after pasting and deleting glyphs

This commit is contained in:
thankyouverycool 2022-12-17 18:20:20 -05:00 committed by Andreas Kling
parent 96d7964913
commit 91609f9327

View file

@ -1057,6 +1057,7 @@ void MainWidget::paste_glyphs()
m_glyph_editor_widget->update();
m_glyph_map_widget->update();
update_preview();
update_statusbar();
}
@ -1078,6 +1079,7 @@ void MainWidget::delete_selected_glyphs()
m_glyph_editor_widget->update();
m_glyph_map_widget->update();
update_preview();
update_statusbar();
}