mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 16:00:19 -05:00
🐛 Fix fill apply order
This commit is contained in:
parent
e45e8158b0
commit
7458165e51
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ fn render_single_shape(surface: &mut skia::Surface, shape: &Shape) {
|
|||
|
||||
surface.canvas().concat(&matrix);
|
||||
|
||||
for fill in shape.fills() {
|
||||
for fill in shape.fills().rev() {
|
||||
surface.canvas().draw_rect(r, &fill.to_paint());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue