diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-25 18:45:43 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-25 18:57:10 +0200 |
commit | 6c2ec4c1a49ffdb400aaffd6458304938c1b1fac (patch) | |
tree | 948485c3ba1ff57e0b8566071a9a251979e87fa2 /Userland/Services/Taskbar/main.cpp | |
parent | 2b78d90d046bdeefde35240ec407ce5b9df3e1cd (diff) | |
download | serenity-6c2ec4c1a49ffdb400aaffd6458304938c1b1fac.zip |
Userland+Base: Add "ladyball" logo for the system :^)
Thanks to Katalin Kult for the artwork!
Diffstat (limited to 'Userland/Services/Taskbar/main.cpp')
-rw-r--r-- | Userland/Services/Taskbar/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/Taskbar/main.cpp b/Userland/Services/Taskbar/main.cpp index 1e4fa5ee03..54c452e7ce 100644 --- a/Userland/Services/Taskbar/main.cpp +++ b/Userland/Services/Taskbar/main.cpp @@ -106,7 +106,7 @@ NonnullRefPtr<GUI::Menu> build_system_menu() const Vector<String> sorted_app_categories = discover_apps_and_categories(); auto system_menu = GUI::Menu::construct("\xE2\x9A\xA1"); // HIGH VOLTAGE SIGN - system_menu->add_action(GUI::Action::create("About SerenityOS", 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/ladyball.png"), [](auto&) { pid_t child_pid; const char* argv[] = { "/bin/About", nullptr }; if ((errno = posix_spawn(&child_pid, "/bin/About", nullptr, nullptr, const_cast<char**>(argv), environ))) { |