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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-03-14 17:53:52 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-03-14 17:55:41 +0300
commitbf8a414237f90f8a014b942f8dcaac3a679bda6a (patch)
tree433007289678e8c23668ebeabef49d0200810e08 /source/blender/editors/transform
parent7bfdf357116f0f59b254adb334ae1c24530e904f (diff)
Fix T62551: Limited Hair editing (no grab, scale, rotate)
This is actually re-introduced T59963 which got broken by 6752022310b. Use less obscure recalc flag now.
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform_conversions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c
index e79f510d308..75d1aa9343d 100644
--- a/source/blender/editors/transform/transform_conversions.c
+++ b/source/blender/editors/transform/transform_conversions.c
@@ -2255,7 +2255,7 @@ void flushTransParticles(TransInfo *t)
}
PE_update_object(t->depsgraph, scene, OBACT(view_layer), 1);
- DEG_id_tag_update(&ob->id, ID_RECALC_SHADING);
+ DEG_id_tag_update(&ob->id, ID_RECALC_PSYS_REDO);
}
}