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:
authorJoseph Eagar <joeedh@gmail.com>2011-05-12 05:55:08 +0400
committerJoseph Eagar <joeedh@gmail.com>2011-05-12 05:55:08 +0400
commit521d824371f6b62b09bc8fa9693c3429a14d1d77 (patch)
tree31c0ee6b76e78b1554debc6a0d80ee6da61c5e08 /source/blender/makesrna
parent88c3781b7ce40fb6b839db91fd87cc93d5fd0012 (diff)
=bmesh=
1. Removed pinning, at least until after trunk reintegration (it's a usefull feature, but incomplete). 2. Ripped out the subclassing code I originally wrote so bmesh would be more usable for modifiers (I ended up improving CDDM instead). 3. Inlined some of the macros in bmesh.h, still need to do the macros in bmesh_operator_api.h. 4. Removed the BMESH_ITER_*** macros (except for BMESH_ITER_INDEX). They were too clunkly to be worth it.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index c152509d413..6dc0d38e8a4 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -1897,10 +1897,6 @@ static void rna_def_mesh(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Face Area", "Displays the area of selected faces, Using global values when set in the transform panel");
RNA_def_property_update(prop, 0, "rna_Mesh_update_draw");
- prop= RNA_def_property(srna, "draw_pins", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "drawflag", ME_DRAW_PINS);
- RNA_def_property_ui_text(prop, "Draw Pins", "Displays pinned mesh elements");
- RNA_def_property_update(prop, 0, "rna_Mesh_update_data");
/* editflag */
prop= RNA_def_property(srna, "use_mirror_x", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "editflag", ME_EDIT_MIRROR_X);