1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00

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.
This commit is contained in:
Andreas Kling 2024-06-18 21:45:50 +02:00
parent 8d7216f4e0
commit 722a669b22
Notes: sideshowbarker 2024-07-17 01:04:03 +09:00

View file

@ -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;