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:
authorTon Roosendaal <ton@blender.org>2011-02-26 18:42:59 +0300
committerTon Roosendaal <ton@blender.org>2011-02-26 18:42:59 +0300
commita5eba49ccbb439b36e1ab2cc5d3b15952b787025 (patch)
treef0c5600290c007fc304eea416997039f6c28e331 /source/blender
parent61235fcc8a74283166632150e8b8369089ad4a21 (diff)
Bugfix #26231
Mesh editing: operator "Blend From Shape" had blending off as default. A bit weird... so let's change :)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 4a0b1cb9e5e..d1ff06ec213 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -5291,7 +5291,7 @@ void MESH_OT_blend_from_shape(wmOperatorType *ot)
prop= RNA_def_enum(ot->srna, "shape", shape_items, 0, "Shape", "Shape key to use for blending.");
RNA_def_enum_funcs(prop, shape_itemf);
RNA_def_float(ot->srna, "blend", 1.0f, -FLT_MAX, FLT_MAX, "Blend", "Blending factor.", -2.0f, 2.0f);
- RNA_def_boolean(ot->srna, "add", 1, "Add", "Add rather then blend between shapes.");
+ RNA_def_boolean(ot->srna, "add", 0, "Add", "Add rather then blend between shapes.");
}
/************************ Merge Operator *************************/