diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2023-05-10 17:00:44 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-05-13 12:53:49 +0200 |
commit | 1ee78c40aed51a2fcac3cd8456c29359120f90c1 (patch) | |
tree | 252a0328af3c5bfcda2cf390634306459a6b6c98 /Userland/Applications/FontEditor | |
parent | e2762d89561cf6a210df308a202dbf8c9e225634 (diff) | |
download | serenity-1ee78c40aed51a2fcac3cd8456c29359120f90c1.zip |
FontEditor: Remove unnecessary call to hide() NewFontDialog
This workaround has not been needed since 5c92397
Diffstat (limited to 'Userland/Applications/FontEditor')
-rw-r--r-- | Userland/Applications/FontEditor/MainWidget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
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<void> 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); |