mirror of
https://github.com/penpot/penpot.git
synced 2025-07-13 17:57:19 +02:00
🐛 Fix blend mode on merge fills
This commit is contained in:
parent
401fa823a0
commit
9733c41ae4
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ pub fn merge_fills(fills: &[Fill], bounding_box: Rect) -> skia::Paint {
|
|||
if let Some(shader) = shader {
|
||||
combined_shader = match combined_shader {
|
||||
Some(existing_shader) => Some(skia::shaders::blend(
|
||||
skia::Blender::mode(skia::BlendMode::Overlay),
|
||||
skia::Blender::mode(skia::BlendMode::DstOver),
|
||||
existing_shader,
|
||||
shader,
|
||||
)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue