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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-08-11 11:24:57 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-08-17 15:07:18 +0300
commitefa840f99ffd77773f3fe4bc59108aeccf223fd8 (patch)
tree8b499761e4347d40db3f9f867c2f30808dc1ca8b
parent518d6906287947fd92388bd6438f6552177e051c (diff)
Fix T52344: Softbody on Text.
For some reasons (c) softbody modifier was marked as compatible with curves... Would need much more work though, so for now just removing that flag!
-rw-r--r--source/blender/modifiers/intern/MOD_softbody.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_softbody.c b/source/blender/modifiers/intern/MOD_softbody.c
index a0bbe5da04a..f5fc1d8ced8 100644
--- a/source/blender/modifiers/intern/MOD_softbody.c
+++ b/source/blender/modifiers/intern/MOD_softbody.c
@@ -100,8 +100,7 @@ ModifierTypeInfo modifierType_Softbody = {
/* structName */ "SoftbodyModifierData",
/* structSize */ sizeof(SoftbodyModifierData),
/* type */ eModifierTypeType_OnlyDeform,
- /* flags */ eModifierTypeFlag_AcceptsCVs |
- eModifierTypeFlag_AcceptsLattice |
+ /* flags */ eModifierTypeFlag_AcceptsLattice |
eModifierTypeFlag_RequiresOriginalData |
eModifierTypeFlag_Single,