From fe9e2f463c7feeccd14083ad06345b3cc5a3ac9e Mon Sep 17 00:00:00 2001 From: Eyad Hossam Date: Fri, 17 Sep 2021 02:38:12 +0200 Subject: [PATCH] Browser: Remove redundant tab::view() call from the tab constructor --- Userland/Applications/Browser/Tab.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Applications/Browser/Tab.cpp b/Userland/Applications/Browser/Tab.cpp index 22bdfba417..651550f690 100644 --- a/Userland/Applications/Browser/Tab.cpp +++ b/Userland/Applications/Browser/Tab.cpp @@ -132,7 +132,6 @@ Tab::Tab(BrowserWindow& window) auto url = url_from_user_input(m_location_box->text()); load(url); - view(); }; m_location_box->add_custom_context_menu_action(GUI::Action::create("Paste && Go", [this](auto&) {