From 6c2ec4c1a49ffdb400aaffd6458304938c1b1fac Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 25 Apr 2021 18:45:43 +0200 Subject: [PATCH] Userland+Base: Add "ladyball" logo for the system :^) Thanks to Katalin Kult for the artwork! --- Base/res/icons/16x16/ladyball.png | Bin 0 -> 334 bytes Base/res/icons/32x32/ladyball.png | Bin 0 -> 575 bytes Userland/Applications/About/main.cpp | 4 ++-- Userland/Services/Taskbar/TaskbarWindow.cpp | 2 +- Userland/Services/Taskbar/main.cpp | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 Base/res/icons/16x16/ladyball.png create mode 100644 Base/res/icons/32x32/ladyball.png diff --git a/Base/res/icons/16x16/ladyball.png b/Base/res/icons/16x16/ladyball.png new file mode 100644 index 0000000000000000000000000000000000000000..00ee2d5d71c29850584f15028a4a3eb28b173171 GIT binary patch literal 334 zcmV-U0kQsxP)7L` z5f(BQ>Te6O~CbZf~&U=n`Gu7#wU>VbOHcaoSj2! z?G!^KstN4J;gUf_f9$EY1|>;i*Pjf z962`;g%w001psi|AK?9I1pqKrj?rctB8elvyf8tn9x23I{%=sd8LbIZVyFdAQwql%J%=P)G!D5rOcBIkBu>tOEZiEls@|&&{v}qc3k@vp%`#AyNX}tmffNg()*=z>K<8c@* z`wPg#s1jKZ;GYjq(Mt`SSn%ExTWFQdrLrb)%9;m}VuAwE*r-zAWCTuN7C2`i&<2*2 zKs3&RWRg%d@m4w6ml|bE*@q)%Aq)TyQ@bfrs^{5qaH$j#1NCAF004d0ir}FREb(a! zNTm=pK!N0_UD5>0*4(TrPJiFEu6X@%63*LJ;tyfoCkeDcGLFrw@K;N}cFP1>%2(>`L?COaah?S-BXQhiUWJKx^ z3S{%Ohh04xf|itT1r_cAcv`RUFm>28%`nnK?`e%Tk{I2RXRuYjZ34b~$mI{b~VPk}onh%4pOe15i1<@_&QSnsk=M4^yqewaFSYaMf# zaYiXjM~R8j>{DlUls;NwEC4t9VlpO(0Nma5YF1d9n_SKQ^>TW5`vo3^`F#)ds`dZ? N002ovPDHLkV1mv&0p9=s literal 0 HcmV?d00001 diff --git a/Userland/Applications/About/main.cpp b/Userland/Applications/About/main.cpp index f999be3a763..18b29512185 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 15f23fd4848..25e25a2e2e2 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 1e4fa5ee03f..54c452e7ce6 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))) {