[Bf-blender-cvs] [e72d8b4] master: Mesh Inset: select internal faces by default

Campbell Barton noreply at git.blender.org
Mon Oct 13 17:02:42 CEST 2014


Commit: e72d8b4711ff50b199075c0b469c305b3554d5ef
Author: Campbell Barton
Date:   Mon Oct 13 17:02:21 2014 +0200
Branches: master
https://developer.blender.org/rBe72d8b4711ff50b199075c0b469c305b3554d5ef

Mesh Inset: select internal faces by default

===================================================================

M	source/blender/editors/mesh/editmesh_inset.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_inset.c b/source/blender/editors/mesh/editmesh_inset.c
index a90a002..f1c3ca3 100644
--- a/source/blender/editors/mesh/editmesh_inset.c
+++ b/source/blender/editors/mesh/editmesh_inset.c
@@ -514,7 +514,7 @@ void MESH_OT_inset(wmOperatorType *ot)
 	RNA_def_property_ui_range(prop, -10.0f, 10.0f, 0.01, 4);
 
 	RNA_def_boolean(ot->srna, "use_outset", false, "Outset", "Outset rather than inset");
-	RNA_def_boolean(ot->srna, "use_select_inset", true, "Select Outer", "Select the new inset faces");
+	RNA_def_boolean(ot->srna, "use_select_inset", false, "Select Outer", "Select the new inset faces");
 	RNA_def_boolean(ot->srna, "use_individual", false, "Individual", "Individual Face Inset");
 	RNA_def_boolean(ot->srna, "use_interpolate", true, "Interpolate", "Blend face data across the inset");
 }




More information about the Bf-blender-cvs mailing list