[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [35200] trunk/blender/source/blender/ editors/mesh/editmesh_tools.c: Bugfix #26231

Ton Roosendaal ton at blender.org
Sat Feb 26 16:42:59 CET 2011


Revision: 35200
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=35200
Author:   ton
Date:     2011-02-26 15:42:59 +0000 (Sat, 26 Feb 2011)
Log Message:
-----------
Bugfix #26231

Mesh editing: operator "Blend From Shape" had blending off as default.
A bit weird... so let's change :)

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mesh/editmesh_tools.c

Modified: trunk/blender/source/blender/editors/mesh/editmesh_tools.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2011-02-26 15:30:38 UTC (rev 35199)
+++ trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2011-02-26 15:42:59 UTC (rev 35200)
@@ -5291,7 +5291,7 @@
 	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 *************************/




More information about the Bf-blender-cvs mailing list