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>2016-03-11 17:30:04 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-03-18 13:44:21 +0300
commit34510e3ccee005488c86900738b7959758837268 (patch)
tree1a0b950c45dcd8870917b6e8ebb1415c75428354
parentde80ecc8fbd41981d11605c89b9b10b31922ae2d (diff)
Fix crash adding EditNormals modifier to NURBS object (or other types but mesh).
Kinda stupid, but that eModifierTypeFlag_AcceptsCVs could really use a comment alongside its definition! Safe to be backported to 2.77.
-rw-r--r--source/blender/modifiers/intern/MOD_normal_edit.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_normal_edit.c b/source/blender/modifiers/intern/MOD_normal_edit.c
index a24ed4d6614..c5c6fe1f6b6 100644
--- a/source/blender/modifiers/intern/MOD_normal_edit.c
+++ b/source/blender/modifiers/intern/MOD_normal_edit.c
@@ -498,7 +498,6 @@ ModifierTypeInfo modifierType_NormalEdit = {
/* structSize */ sizeof(NormalEditModifierData),
/* type */ eModifierTypeType_Constructive,
/* flags */ eModifierTypeFlag_AcceptsMesh |
- eModifierTypeFlag_AcceptsCVs |
eModifierTypeFlag_SupportsMapping |
eModifierTypeFlag_SupportsEditmode |
eModifierTypeFlag_EnableInEditmode,