From c94fc7d3b0db88a71765f65d6a72f6507e7085d2 Mon Sep 17 00:00:00 2001 From: Bastiaan van der Plaat Date: Tue, 16 Jan 2024 18:44:51 +0100 Subject: [PATCH] Ladybird: Change default new tab URL to about:newtab --- Userland/Applications/BrowserSettings/Defaults.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/BrowserSettings/Defaults.h b/Userland/Applications/BrowserSettings/Defaults.h index 5ac8bc79af..8e970385d4 100644 --- a/Userland/Applications/BrowserSettings/Defaults.h +++ b/Userland/Applications/BrowserSettings/Defaults.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 = "resource://ladybird/newtab.html"sv; +static constexpr StringView default_new_tab_url = "about:newtab"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;