Merge branch 'fix-add-segment' into 'main'

Fix gsk_path_builder_add_segment

See merge request GNOME/gtk!6280
This commit is contained in:
Matthias Clasen 2023-08-14 01:01:37 +00:00
commit fa6645f157

View File

@ -618,7 +618,7 @@ gsk_standard_contour_add_segment (const GskContour *contour,
else if (end->t > 0)
{
gsk_curve_split (&c, end->t, &c1, &c2);
add_curve (&c, builder, &emit_move_to);
add_curve (&c1, builder, &emit_move_to);
}
}