summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2022-10-12 14:23:14 +0200
committerAndreas Kling <kling@serenityos.org>2022-10-12 14:47:27 +0200
commit344ca73930912d2c3f224ed1f392fbe5ed7bbbed (patch)
tree30cf13ce9065797f903b8ca3db3f67e3bcd00f31 /Userland/Applications
parent8373a14835b70548e0af6d93b9fa8813e29588be (diff)
downloadserenity-344ca73930912d2c3f224ed1f392fbe5ed7bbbed.zip
TextEditor: Set window title before showing the main window
Previously TextEditor updated its window title after the window was already visible. This causes the default title ("GUI::Window") to be shown for a short period of time which was especially noticeable when opening files.
Diffstat (limited to 'Userland/Applications')
-rw-r--r--Userland/Applications/TextEditor/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/Applications/TextEditor/main.cpp b/Userland/Applications/TextEditor/main.cpp
index 21f13707a5..825cf562e0 100644
--- a/Userland/Applications/TextEditor/main.cpp
+++ b/Userland/Applications/TextEditor/main.cpp
@@ -67,6 +67,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
}
text_widget->initialize_menubar(*window);
+ text_widget->update_title();
window->show();
window->set_icon(app_icon.bitmap_for_size(16));
@@ -85,8 +86,9 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
return 1;
text_widget->editor().set_cursor_and_focus_line(parsed_argument.line().value_or(1) - 1, parsed_argument.column().value_or(0));
}
+
+ text_widget->update_title();
}
- text_widget->update_title();
text_widget->update_statusbar();
return app->exec();