mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-28 13:18:19 +00:00
LibWeb: Unbreak SVGFilterElement compilation
This was caused by an undetected merge conflict.
This commit is contained in:
parent
1dd3608960
commit
cd1cf75f7b
Notes:
github-actions[bot]
2025-08-06 13:49:23 +00:00
Author: https://github.com/gmta
Commit: cd1cf75f7b
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5741
Reviewed-by: https://github.com/tcl3 ✅
1 changed files with 1 additions and 2 deletions
|
@ -117,8 +117,7 @@ Optional<Gfx::Filter> SVGFilterElement::gfx_filter()
|
|||
} else if (auto* blend_primitive = as_if<SVGFEBlendElement>(node)) {
|
||||
auto foreground = resolve_input_filter(blend_primitive->in1()->base_val());
|
||||
auto background = resolve_input_filter(blend_primitive->in2()->base_val());
|
||||
|
||||
auto blend_mode = blend_primitive.mode();
|
||||
auto blend_mode = blend_primitive->mode();
|
||||
|
||||
root_filter = Gfx::Filter::blend(background, foreground, blend_mode);
|
||||
update_result_map(*blend_primitive);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue