diff --git a/Base/res/icons/16x16/ladyball.png b/Base/res/icons/16x16/ladyball.png new file mode 100644 index 0000000000..00ee2d5d71 Binary files /dev/null and b/Base/res/icons/16x16/ladyball.png differ diff --git a/Base/res/icons/32x32/ladyball.png b/Base/res/icons/32x32/ladyball.png new file mode 100644 index 0000000000..8a7890e0f9 Binary files /dev/null and b/Base/res/icons/32x32/ladyball.png differ diff --git a/Userland/Applications/About/main.cpp b/Userland/Applications/About/main.cpp index f999be3a76..18b2951218 100644 --- a/Userland/Applications/About/main.cpp +++ b/Userland/Applications/About/main.cpp @@ -32,7 +32,7 @@ int main(int argc, char** argv) unveil(nullptr, nullptr); - auto app_icon = GUI::Icon::default_icon("ladybug"); - GUI::AboutDialog::show("SerenityOS", nullptr, nullptr, app_icon.bitmap_for_size(32)); + auto app_icon = GUI::Icon::default_icon("ladyball"); + GUI::AboutDialog::show("SerenityOS", app_icon.bitmap_for_size(32), nullptr, app_icon.bitmap_for_size(16)); return app->exec(); } diff --git a/Userland/Services/Taskbar/TaskbarWindow.cpp b/Userland/Services/Taskbar/TaskbarWindow.cpp index 15f23fd484..25e25a2e2e 100644 --- a/Userland/Services/Taskbar/TaskbarWindow.cpp +++ b/Userland/Services/Taskbar/TaskbarWindow.cpp @@ -68,7 +68,7 @@ TaskbarWindow::TaskbarWindow(NonnullRefPtr start_menu) m_start_button->set_font(Gfx::FontDatabase::default_bold_font()); m_start_button->set_icon_spacing(0); m_start_button->set_fixed_size(80, 22); - auto app_icon = GUI::Icon::default_icon("ladybug"); + auto app_icon = GUI::Icon::default_icon("ladyball"); m_start_button->set_icon(app_icon.bitmap_for_size(16)); m_start_button->set_menu(m_start_menu); 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 build_system_menu() const Vector 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(argv), environ))) {