1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

PixelPaint: Allow reordering layer by dragging them in LayerListWidget

This is rather cool! :^)
This commit is contained in:
Andreas Kling 2020-05-25 23:48:09 +02:00
parent dc3de47b03
commit e4b11a23b7
6 changed files with 169 additions and 16 deletions

View file

@ -41,6 +41,8 @@ class ImageEditor final
C_OBJECT(ImageEditor);
public:
virtual ~ImageEditor() override;
const Image* image() const { return m_image; }
Image* image() { return m_image; }