diff --git a/Services/SystemMenu/main.cpp b/Services/SystemMenu/main.cpp index 59d0c29bb64..af532ee4cfb 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))) {