1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:47:44 +00:00

PixelPaint: Add GUI for editing layer names :^)

This commit is contained in:
Andreas Kling 2020-07-23 20:48:28 +02:00
parent 955d3c22c7
commit 65ec655b0d
4 changed files with 30 additions and 1 deletions

View file

@ -59,7 +59,7 @@ public:
Gfx::IntRect rect() const { return { {}, size() }; }
const String& name() const { return m_name; }
void set_name(const String& name) { m_name = name; }
void set_name(const String&);
void did_modify_bitmap(Image&);