1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:17:45 +00:00

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.
This commit is contained in:
electrikmilk 2022-02-14 23:51:05 -05:00 committed by Andreas Kling
parent 7e5b3ce26b
commit 97ce19bc68
3 changed files with 6 additions and 2 deletions

View file

@ -37,6 +37,8 @@ struct IconBag final {
RefPtr<Gfx::Bitmap> active_layer_down { nullptr };
RefPtr<Gfx::Bitmap> delete_layer { nullptr };
RefPtr<Gfx::Bitmap> merge_visible { nullptr };
RefPtr<Gfx::Bitmap> merge_active_layer_up { nullptr };
RefPtr<Gfx::Bitmap> merge_active_layer_down { nullptr };
RefPtr<Gfx::Bitmap> filter { nullptr };
};
}