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:
Diffstat (limited to 'source/blender/editors/space_view3d/drawobject.c')
-rw-r--r--source/blender/editors/space_view3d/drawobject.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c
index 7ed029f3eaf..aa9c28dbef2 100644
--- a/source/blender/editors/space_view3d/drawobject.c
+++ b/source/blender/editors/space_view3d/drawobject.c
@@ -3727,6 +3727,12 @@ static void draw_ptcache_edit(Scene *scene, View3D *v3d, RegionView3D *rv3d, Obj
float nosel_col[3];
float *pathcol = NULL, *pcol;
+
+ if(edit->psys && edit->psys->flag & PSYS_HAIR_UPDATED) {
+ PE_update_object(scene, ob, 0);
+ edit->psys->flag &= ~PSYS_HAIR_UPDATED;
+ }
+
/* create path and child path cache if it doesn't exist already */
if(edit->pathcache==0)
psys_cache_edit_paths(scene, ob, edit, CFRA);