From aa09e40eb24cc1defd844d2ed19e2d56e254ba0a Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Mon, 29 Nov 2021 10:11:51 -0500 Subject: [PATCH] FontEditor: Update status bar on initialization Fixes incorrect glyph status immediately after loading a new font. --- Userland/Applications/FontEditor/FontEditor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Applications/FontEditor/FontEditor.cpp b/Userland/Applications/FontEditor/FontEditor.cpp index f408552241..069cd4863e 100644 --- a/Userland/Applications/FontEditor/FontEditor.cpp +++ b/Userland/Applications/FontEditor/FontEditor.cpp @@ -552,6 +552,8 @@ void FontEditorWidget::initialize(const String& path, RefPtr&& m_undo_action->set_enabled(false); m_redo_action->set_enabled(false); + update_statusbar(); + if (on_initialize) on_initialize(); }