[Bf-blender-cvs] [073a1f8] master: Revert "Fix T38819: Mark Seam misbehaves when accessed through spacebar search"

Campbell Barton noreply at git.blender.org
Tue Feb 25 04:08:41 CET 2014


Commit: 073a1f8f7c4ab28805f5e6b85db63943f7d35eb9
Author: Campbell Barton
Date:   Tue Feb 25 14:06:31 2014 +1100
https://developer.blender.org/rB073a1f8f7c4ab28805f5e6b85db63943f7d35eb9

Revert "Fix T38819: Mark Seam misbehaves when accessed through spacebar search"

This reverts commit d47d030275f14b1c1b7a35452f9b3c841ebeb178.

This isn't a bug.

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

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

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

diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index fd927d8..f8b50d4 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -796,8 +796,6 @@ static int edbm_mark_seam_exec(bContext *C, wmOperator *op)
 
 void MESH_OT_mark_seam(wmOperatorType *ot)
 {
-	PropertyRNA *prop;
-
 	/* identifiers */
 	ot->name = "Mark Seam";
 	ot->idname = "MESH_OT_mark_seam";
@@ -810,8 +808,7 @@ void MESH_OT_mark_seam(wmOperatorType *ot)
 	/* flags */
 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 	
-	prop = RNA_def_boolean(ot->srna, "clear", 0, "Clear", "");
-	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
+	RNA_def_boolean(ot->srna, "clear", 0, "Clear", "");
 }
 
 static int edbm_mark_sharp_exec(bContext *C, wmOperator *op)




More information about the Bf-blender-cvs mailing list