mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:47:34 +00:00
LibWeb: Fix typo in FillEllipse painting command name
This commit is contained in:
parent
790bfd7ef9
commit
a5cf875e23
2 changed files with 4 additions and 4 deletions
|
@ -203,7 +203,7 @@ struct DrawEllipse {
|
|||
[[nodiscard]] Gfx::IntRect bounding_rect() const { return rect; }
|
||||
};
|
||||
|
||||
struct FillElipse {
|
||||
struct FillEllipse {
|
||||
Gfx::IntRect rect;
|
||||
Color color;
|
||||
Gfx::AntiAliasingPainter::BlendMode blend_mode;
|
||||
|
@ -332,7 +332,7 @@ using PaintingCommand = Variant<
|
|||
StrokePathUsingColor,
|
||||
StrokePathUsingPaintStyle,
|
||||
DrawEllipse,
|
||||
FillElipse,
|
||||
FillEllipse,
|
||||
DrawLine,
|
||||
DrawSignedDistanceField,
|
||||
PaintProgressbar,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue