1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:37:36 +00:00

PixelPaint: Add actions to flip image vertically/horizontally

This commit is contained in:
Mustafa Quraish 2021-09-02 19:25:41 -04:00 committed by Andreas Kling
parent 0c56f06994
commit 6a8c408856
3 changed files with 33 additions and 0 deletions

View file

@ -91,6 +91,8 @@ public:
String const& title() const { return m_title; }
void set_title(String);
void flip(Gfx::Orientation orientation);
private:
explicit Image(Gfx::IntSize const&);