LibWeb: Remove unused blend mode param in FillEllipse painting command

This commit is contained in:
Aliaksandr Kalenik 2024-04-20 10:20:01 +02:00 committed by Alexander Kalenik
commit cedf6dd2c3
Notes: sideshowbarker 2024-07-17 01:55:29 +09:00
9 changed files with 9 additions and 11 deletions

View file

@ -173,7 +173,7 @@ void CommandList::execute(CommandExecutor& executor)
return executor.draw_ellipse(command.rect, command.color, command.thickness);
},
[&](FillEllipse const& command) {
return executor.fill_ellipse(command.rect, command.color, command.blend_mode);
return executor.fill_ellipse(command.rect, command.color);
},
[&](DrawLine const& command) {
return executor.draw_line(command.color, command.from, command.to, command.thickness,