From 31c00224295bfbe71e6533b447751d745c0f06cc Mon Sep 17 00:00:00 2001 From: diogenes Date: Fri, 13 May 2022 16:06:08 -0700 Subject: [PATCH] LibGUI: Phrase help action more specifically Previously the option created by `make_help_action()` was unclear in its meaning, by renaming the option to 'Manual' this should more meaningfully represent the effect of the action. --- Userland/Libraries/LibGUI/CommonActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGUI/CommonActions.cpp b/Userland/Libraries/LibGUI/CommonActions.cpp index bcf8c75af8..783c2a6b66 100644 --- a/Userland/Libraries/LibGUI/CommonActions.cpp +++ b/Userland/Libraries/LibGUI/CommonActions.cpp @@ -113,7 +113,7 @@ NonnullRefPtr make_quit_action(Function callback) NonnullRefPtr make_help_action(Function callback, Core::Object* parent) { - auto action = Action::create("&Contents", { Mod_None, Key_F1 }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/app-help.png").release_value_but_fixme_should_propagate_errors(), move(callback), parent); + auto action = Action::create("&Manual", { Mod_None, Key_F1 }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/app-help.png").release_value_but_fixme_should_propagate_errors(), move(callback), parent); action->set_status_tip("Show help contents"); return action; }