From 6bfcb9c2b0c098731e54908408c2403d4da6b32f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 4 Jan 2021 23:23:55 +0100 Subject: [PATCH] SystemMenu: Tweak text "About..." => "About SerenityOS" --- Services/SystemMenu/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/SystemMenu/main.cpp b/Services/SystemMenu/main.cpp index 59d0c29bb6..af532ee4cf 100644 --- a/Services/SystemMenu/main.cpp +++ b/Services/SystemMenu/main.cpp @@ -202,7 +202,7 @@ NonnullRefPtr build_system_menu() } system_menu->add_separator(); - system_menu->add_action(GUI::Action::create("About...", Gfx::Bitmap::load_from_file("/res/icons/16x16/ladybug.png"), [](auto&) { + system_menu->add_action(GUI::Action::create("About SerenityOS", Gfx::Bitmap::load_from_file("/res/icons/16x16/ladybug.png"), [](auto&) { pid_t child_pid; const char* argv[] = { "/bin/About", nullptr }; if ((errno = posix_spawn(&child_pid, "/bin/About", nullptr, nullptr, const_cast(argv), environ))) {