From 91609f932799cb4edf2e6cc3083b896fcac66612 Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Sat, 17 Dec 2022 18:20:20 -0500 Subject: FontEditor: Update preview window after pasting and deleting glyphs --- Userland/Applications/FontEditor/MainWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) 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(); } -- cgit v1.2.3