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 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7MLk^{Lo80O4c_R*>?lyX zT|$8MbwRI(fk049SHa!d=Bp)6T{X>9du#2KU$S+F)HU2VA-esjU;tn6QZYwCF(a{8 zMZ4e0Hd&4*2;39>0?@bDDXp-`S#w~ zb7d^e1zSa36j>Px?#Ms*o5{*x5ZZS!OGNiT}YfA2=BkD*oTFVhcLr zbxKE6X_Arm)8oshL~6ONd9&{y7rWikl|?b(mOf{9SMIo5Ib~_b{@=G=_9m{nBjz?c oSKzwEsr@dw59)vVR38@?ot@h?@w(&`1_lNOPgg&ebxsLQ0Fii%IsgCw literal 0 HcmV?d00001 diff --git a/Base/res/icons/32x32/ladyball.png b/Base/res/icons/32x32/ladyball.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7890e0f961c6975bba6b7e6c382b2f761b4948 GIT binary patch literal 575 zcmeAS@N?(olHy`uVBq!ia0y~yU{C;I4mJh`hT^KKFANM!Y@RNTArXg|LJ8g9 z+$WB#5Q^k~FrVN5qBrlHh!6LKqcf(SUAjrF;M6SkiAhaN7jLWxdXU26mmp@5u6TiM z+7t(qb4@9e0!%-KS>Bv3mFjb|T{&Hmhk-wMw`S0)=QoQAR*DERe@)_KV5q&`^Bsb?-3BQxuLQVKK5uQ0wUum|HYJ}`^c`bG)cOwwr8i8@8eDRIpV@0RNuD95w`Se6 zgwI>$jh4M|4%1QoKSjY;uq`3Xzx|lETXfZ_=}ZNmjonJ?s_RVWZvV^rEM3O!-Z9A> z%V73vF{=&t^2>)6Z{gFJn5<_ZE*`(WVew7gYs#8de|p#ZH(IN9Xg|GNQ@73k=^y>r zi1(ZPT^3HrsGDI`nk`#AqtH#$$Gx-j(wpG)vMF{^NjePXzmkm9IvDQU{gM?HF>7|r h*?(V)s>*+}%C-Eg<^Q_s8v_FagQu&X%Q~loCIHSm0p9=s literal 0 HcmV?d00001 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))) {