summaryrefslogtreecommitdiff
path: root/Demos
diff options
context:
space:
mode:
authorthankyouverycool <66646555+thankyouverycool@users.noreply.github.com>2020-08-24 07:02:03 -0400
committerAndreas Kling <kling@serenityos.org>2020-08-27 15:38:02 +0200
commitebba297b42a54211ba501fd254b629a15ecf5028 (patch)
treea4bc7465371ad97844415f2d98740123eaf18f0f /Demos
parent0bb2025b69a4f07dfb518023f205ae3e331fedf0 (diff)
downloadserenity-ebba297b42a54211ba501fd254b629a15ecf5028.zip
Base: Move 16x16 common icons to /res/icons/16x16/
Drops the '16' suffix from filenames. Resizes inconsistent audio-volume icons to intended size.
Diffstat (limited to 'Demos')
-rw-r--r--Demos/WidgetGallery/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/WidgetGallery/main.cpp b/Demos/WidgetGallery/main.cpp
index 71a1fc6630..26d8605cac 100644
--- a/Demos/WidgetGallery/main.cpp
+++ b/Demos/WidgetGallery/main.cpp
@@ -195,9 +195,9 @@ int main(int argc, char** argv)
button_vert2_container.set_layout<GUI::VerticalBoxLayout>();
auto& button1 = button_vert1_container.add<GUI::Button>("Button 1");
- button1.set_icon(Gfx::Bitmap::load_from_file("/res/icons/kill16.png"));
+ button1.set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/kill.png"));
auto& button2 = button_vert1_container.add<GUI::Button>("Button 2");
- button2.set_icon(Gfx::Bitmap::load_from_file("/res/icons/kill16.png"));
+ button2.set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/kill.png"));
button2.set_enabled(false);
auto& button3 = button_vert2_container.add<GUI::Button>("\xF0\x9F\x98\x88 Button 3");
(void)button3;