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:
authorCampbell Barton <ideasman42@gmail.com>2012-10-24 09:44:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-24 09:44:27 +0400
commitdd36983520e174eac58f804867e69a7ec42e7998 (patch)
tree04f0b1063e9fa6fbb163db709b606dfcf770678c /source/blender/modifiers/intern/MOD_decimate.c
parent90f4ed3a0eafad0a315d1f4efadf832f05c5961d (diff)
enable decimate modifier for curves.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_decimate.c')
-rw-r--r--source/blender/modifiers/intern/MOD_decimate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_decimate.c b/source/blender/modifiers/intern/MOD_decimate.c
index 8ac303f7bd5..b7b9384b4e8 100644
--- a/source/blender/modifiers/intern/MOD_decimate.c
+++ b/source/blender/modifiers/intern/MOD_decimate.c
@@ -208,7 +208,8 @@ ModifierTypeInfo modifierType_Decimate = {
/* structName */ "DecimateModifierData",
/* structSize */ sizeof(DecimateModifierData),
/* type */ eModifierTypeType_Nonconstructive,
- /* flags */ eModifierTypeFlag_AcceptsMesh,
+ /* flags */ eModifierTypeFlag_AcceptsMesh |
+ eModifierTypeFlag_AcceptsCVs,
/* copyData */ copyData,
/* deformVerts */ NULL,
/* deformMatrices */ NULL,