From 1ee78c40aed51a2fcac3cd8456c29359120f90c1 Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Wed, 10 May 2023 17:00:44 -0400 Subject: [PATCH] FontEditor: Remove unnecessary call to hide() NewFontDialog This workaround has not been needed since 5c92397 --- Userland/Applications/FontEditor/MainWidget.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Applications/FontEditor/MainWidget.cpp b/Userland/Applications/FontEditor/MainWidget.cpp index 799e69fd8b..ddf613dabf 100644 --- a/Userland/Applications/FontEditor/MainWidget.cpp +++ b/Userland/Applications/FontEditor/MainWidget.cpp @@ -116,7 +116,6 @@ ErrorOr MainWidget::create_actions() auto new_font_wizard = NewFontDialog::construct(window()); if (new_font_wizard->exec() != GUI::Dialog::ExecResult::OK) return; - new_font_wizard->hide(); auto maybe_font = new_font_wizard->create_font(); if (maybe_font.is_error()) return show_error(maybe_font.release_error(), "Creating new font failed"sv);