mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 04:22:28 +00:00
LibWeb: Remove unused blend mode param in FillEllipse painting command
This commit is contained in:
parent
d3cfe35fbd
commit
cedf6dd2c3
Notes:
sideshowbarker
2024-07-17 01:55:29 +09:00
Author: https://github.com/kalenikaliaksandr
Commit: cedf6dd2c3
Pull-request: https://github.com/SerenityOS/serenity/pull/24037
9 changed files with 9 additions and 11 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue