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:
authorCampbell Barton <ideasman42@gmail.com>2014-02-25 07:06:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-25 07:06:37 +0400
commit073a1f8f7c4ab28805f5e6b85db63943f7d35eb9 (patch)
tree79c54039943a164218d497d306b0f1f098a0f610 /source/blender/editors
parentd47d030275f14b1c1b7a35452f9b3c841ebeb178 (diff)
Revert "Fix T38819: Mark Seam misbehaves when accessed through spacebar search"
This reverts commit d47d030275f14b1c1b7a35452f9b3c841ebeb178. This isn't a bug.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index fd927d8cfa0..f8b50d4e5c7 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)