path builder: Fix add_cairo_path

We were forgetting to end the current contour.
This commit is contained in:
Matthias Clasen 2023-08-10 16:08:32 -04:00
parent 4f0c3c81fb
commit fff1645060

View File

@ -423,6 +423,8 @@ gsk_path_builder_add_cairo_path (GskPathBuilder *self,
break;
}
}
gsk_path_builder_end_current (self);
}
/**