diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2022-12-17 18:20:20 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-20 10:22:27 +0100 |
commit | 91609f932799cb4edf2e6cc3083b896fcac66612 (patch) | |
tree | 3e198adc202879eadc87988945ac94f2e51ec2c7 /Userland/Applications | |
parent | 96d7964913beacee2d9e6de833b9aefc46fd6786 (diff) | |
download | serenity-91609f932799cb4edf2e6cc3083b896fcac66612.zip |
FontEditor: Update preview window after pasting and deleting glyphs
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/FontEditor/MainWidget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Applications/FontEditor/MainWidget.cpp b/Userland/Applications/FontEditor/MainWidget.cpp index 2e2711d092..9de62b3ad0 100644 --- a/Userland/Applications/FontEditor/MainWidget.cpp +++ b/Userland/Applications/FontEditor/MainWidget.cpp @@ -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(); } |