1
1

Fix T92185: GPencil memory leak removing stroke from python

The API was not removing the weights, points and traingulation data. Only it was removing the stroke itself.
This commit is contained in:
2021-10-13 16:22:17 +02:00
parent 92b7bf4856
commit 51ea08487b

View File

@@ -906,7 +906,8 @@ static void rna_GPencil_stroke_remove(ID *id,
return;
}
BLI_freelinkN(&frame->strokes, stroke);
BLI_remlink(&frame->strokes, stroke);
BKE_gpencil_free_stroke(stroke);
RNA_POINTER_INVALIDATE(stroke_ptr);
DEG_id_tag_update(&gpd->id, ID_RECALC_TRANSFORM | ID_RECALC_GEOMETRY | ID_RECALC_COPY_ON_WRITE);