From 722a669b2284249ddf30dd842a471145c29484c2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 18 Jun 2024 21:45:50 +0200 Subject: [PATCH] Ladybird: Load about:blank when opening a new tab Let's not show the unappealing about:newtab to new users by default. If it becomes more useful/interesting in the future, we can reconsider. --- Ladybird/DefaultSettings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ladybird/DefaultSettings.h b/Ladybird/DefaultSettings.h index 8e970385d40..a41ca7e0253 100644 --- a/Ladybird/DefaultSettings.h +++ b/Ladybird/DefaultSettings.h @@ -11,7 +11,7 @@ namespace Browser { static constexpr StringView default_homepage_url = "resource://html/misc/welcome.html"sv; -static constexpr StringView default_new_tab_url = "about:newtab"sv; +static constexpr StringView default_new_tab_url = "about:blank"sv; static constexpr StringView default_color_scheme = "auto"sv; static constexpr bool default_enable_content_filters = true; static constexpr bool default_show_bookmarks_bar = true;