summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/Image.h
diff options
context:
space:
mode:
authorelectrikmilk <brandonjordan124@gmail.com>2022-02-14 23:49:20 -0500
committerAndreas Kling <kling@serenityos.org>2022-02-15 10:40:49 +0100
commit7e5b3ce26b96a68b271c0e5737a4dd80bbffdf0a (patch)
tree96d0ab687922ba34aada685a8b39b4571ca387a9 /Userland/Applications/PixelPaint/Image.h
parentdb299e9804d7895a4756bd4a4448caf7de5b4c21 (diff)
downloadserenity-7e5b3ce26b96a68b271c0e5737a4dd80bbffdf0a.zip
PixelPaint: Implement Merge Active Layer Up
Implements 'Merge Active Layer Up' and adds it to the 'Layer' menu.
Diffstat (limited to 'Userland/Applications/PixelPaint/Image.h')
-rw-r--r--Userland/Applications/PixelPaint/Image.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/PixelPaint/Image.h b/Userland/Applications/PixelPaint/Image.h
index ac71c9141a..c425e18ffe 100644
--- a/Userland/Applications/PixelPaint/Image.h
+++ b/Userland/Applications/PixelPaint/Image.h
@@ -81,6 +81,7 @@ public:
void select_layer(Layer*);
void flatten_all_layers();
void merge_visible_layers();
+ void merge_active_layer_up(Layer& layer);
void merge_active_layer_down(Layer& layer);
void add_client(ImageClient&);