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

PixelPaint: Allow modifiable thickness for RectangleTool :^)

This commit is contained in:
Mustafa Quraish 2021-09-03 08:42:14 -04:00 committed by Andreas Kling
parent 9ed32582e2
commit 7263e57ce8
2 changed files with 19 additions and 1 deletions

View file

@ -46,6 +46,7 @@ private:
Gfx::IntPoint m_rectangle_end_position;
FillMode m_fill_mode { FillMode::Outline };
DrawMode m_draw_mode { DrawMode::FromCorner };
int m_thickness { 1 };
};
}