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

PixelPaint: Add fill mode for the ellipse tool

Functionality was already there, just had to hook it up!
This commit is contained in:
Valtteri Koskivuori 2021-05-01 22:02:31 +03:00 committed by Linus Groh
parent 8293b22361
commit 4e6f03a860
2 changed files with 7 additions and 1 deletions

View file

@ -27,7 +27,7 @@ public:
private:
enum class Mode {
Outline,
// FIXME: Add Mode::Fill
Fill,
};
void draw_using(GUI::Painter&, const Gfx::IntRect&);