Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Oeser <info@graphics-engineer.com>2019-09-18 16:19:15 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-09-18 18:19:33 +0300
commitf9beb1bef1787166aafd35d326244f3e3f83487e (patch)
tree7185e0890350416adf8d094f52f076171fa1edd4
parenta9a8eedd163e17fcf345726fd4c4db891771cac8 (diff)
Fix (unreported) missing viewport update deleting a particle
If children hairs were displayed in particle editmode, these would not update when a particle was deleted. Reviewers: sergey Differential Revision: https://developer.blender.org/D5840
-rw-r--r--source/blender/editors/physics/particle_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index 2047ecb9e0a..59973d9ee8a 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -3315,6 +3315,7 @@ static int delete_exec(bContext *C, wmOperator *op)
}
DEG_id_tag_update(&data.ob->id, ID_RECALC_GEOMETRY);
+ BKE_particle_batch_cache_dirty_tag(data.edit->psys, BKE_PARTICLE_BATCH_DIRTY_ALL);
WM_event_add_notifier(C, NC_OBJECT | ND_PARTICLE | NA_EDITED, data.ob);
return OPERATOR_FINISHED;