From f248f566b89f7b771f01746a27bd4d52e9c74903 Mon Sep 17 00:00:00 2001 From: James Liu Date: Tue, 9 May 2023 20:59:39 +1000 Subject: [PATCH] Help: Fix link to Contents page --- Userland/Applications/Help/MainWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/Help/MainWidget.cpp b/Userland/Applications/Help/MainWidget.cpp index 6dcd055880..0fdcbf0aca 100644 --- a/Userland/Applications/Help/MainWidget.cpp +++ b/Userland/Applications/Help/MainWidget.cpp @@ -213,7 +213,7 @@ ErrorOr MainWidget::initialize_fallibles(GUI::Window& window) TRY(go_menu->try_add_action(*m_go_home_action)); auto help_menu = TRY(window.try_add_menu("&Help"_short_string)); - String help_page_path = TRY(TRY(try_make_ref_counted(Manual::sections[1 - 1], TRY("Help"_string)))->path()); + String help_page_path = TRY(TRY(try_make_ref_counted(Manual::sections[1 - 1], TRY("Applications/Help"_string)))->path()); TRY(help_menu->try_add_action(GUI::CommonActions::make_command_palette_action(&window))); TRY(help_menu->try_add_action(GUI::Action::create("&Contents", { Key_F1 }, TRY(Gfx::Bitmap::load_from_file("/res/icons/16x16/filetype-unknown.png"sv)), [this, help_page_path = move(help_page_path)](auto&) { open_page(help_page_path);