summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/IconBag.cpp
diff options
context:
space:
mode:
authorelectrikmilk <brandonjordan124@gmail.com>2022-02-14 23:51:05 -0500
committerAndreas Kling <kling@serenityos.org>2022-02-15 10:40:49 +0100
commit97ce19bc680b372f0ab690ede21d4e142b552ff0 (patch)
treefd670d7b222bd47b9792f0cb00e03142d5b8acb9 /Userland/Applications/PixelPaint/IconBag.cpp
parent7e5b3ce26b96a68b271c0e5737a4dd80bbffdf0a (diff)
downloadserenity-97ce19bc680b372f0ab690ede21d4e142b552ff0.zip
Base+PixelPaint: Use Merge Active Layer Up/Down Icons
The icons for these actions were added in a previous commit but never used, now they are.
Diffstat (limited to 'Userland/Applications/PixelPaint/IconBag.cpp')
-rw-r--r--Userland/Applications/PixelPaint/IconBag.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Applications/PixelPaint/IconBag.cpp b/Userland/Applications/PixelPaint/IconBag.cpp
index bbd1a2ab60..52ff362a6d 100644
--- a/Userland/Applications/PixelPaint/IconBag.cpp
+++ b/Userland/Applications/PixelPaint/IconBag.cpp
@@ -36,6 +36,8 @@ ErrorOr<IconBag> IconBag::try_create()
icon_bag.active_layer_down = TRY(Gfx::Bitmap::try_load_from_file("/res/icons/pixelpaint/active-layer-down.png"));
icon_bag.delete_layer = TRY(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/delete.png"));
icon_bag.merge_visible = TRY(Gfx::Bitmap::try_load_from_file("/res/icons/pixelpaint/merge-visible.png"));
+ icon_bag.merge_active_layer_up = TRY(Gfx::Bitmap::try_load_from_file("/res/icons/pixelpaint/merge-active-layer-up.png"));
+ icon_bag.merge_active_layer_down = TRY(Gfx::Bitmap::try_load_from_file("/res/icons/pixelpaint/merge-active-layer-down.png"));
icon_bag.filter = TRY(Gfx::Bitmap::try_load_from_file("/res/icons/pixelpaint/filter.png"));
return icon_bag;