From c0acb2918bc3a239dff00ad9cccbca0b6b5c16b3 Mon Sep 17 00:00:00 2001 From: Bastiaan van der Plaat Date: Fri, 12 Jan 2024 19:39:42 +0100 Subject: [PATCH] Ladybird: Rename new-tab.html file to newtab.html --- Base/res/ladybird/{new-tab.html => newtab.html} | 0 Meta/gn/secondary/Ladybird/BUILD.gn | 2 +- Userland/Applications/BrowserSettings/Defaults.h | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename Base/res/ladybird/{new-tab.html => newtab.html} (100%) diff --git a/Base/res/ladybird/new-tab.html b/Base/res/ladybird/newtab.html similarity index 100% rename from Base/res/ladybird/new-tab.html rename to Base/res/ladybird/newtab.html diff --git a/Meta/gn/secondary/Ladybird/BUILD.gn b/Meta/gn/secondary/Ladybird/BUILD.gn index 6b394757f0..c7c35bd914 100644 --- a/Meta/gn/secondary/Ladybird/BUILD.gn +++ b/Meta/gn/secondary/Ladybird/BUILD.gn @@ -296,7 +296,7 @@ if (current_os == "mac") { sources = [ "//Base/res/ladybird/inspector.css", "//Base/res/ladybird/inspector.js", - "//Base/res/ladybird/new-tab.html", + "//Base/res/ladybird/newtab.html", "//Base/res/ladybird/templates/directory.html", "//Base/res/ladybird/templates/error.html", ] diff --git a/Userland/Applications/BrowserSettings/Defaults.h b/Userland/Applications/BrowserSettings/Defaults.h index 28d9fd34e4..5ac8bc79af 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/new-tab.html"sv; +static constexpr StringView default_new_tab_url = "resource://ladybird/newtab.html"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;