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>2011-12-08 04:28:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-08 04:28:42 +0400
commitea6de7626efdfca82e9140a8d8b0a7537be857fd (patch)
tree1b02ca3b3ea6b27fafdef4133ca246dc8387aef2 /source/blender/makesrna/intern/rna_mesh.c
parent7bc3eeb70741f83e4930b0cd4c42f0bd5d571cc0 (diff)
removed some bmesh todo comments which are not needed and minor edits on previous commit.
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index d41c093c09b..1330c57974d 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -1480,8 +1480,6 @@ static void rna_def_mloopuv(BlenderRNA *brna)
RNA_def_property_struct_type(prop, "MeshUVLoop");
RNA_def_property_collection_funcs(prop, "rna_MeshUVLoopLayer_data_begin", "rna_iterator_array_next", "rna_iterator_array_end", "rna_iterator_array_get", "rna_MeshUVLoopLayer_data_length", NULL, NULL, NULL);
- /* BMESH_TODO: add active/clone/render properties */
-
srna= RNA_def_struct(brna, "MeshUVLoop", NULL);
RNA_def_struct_sdna(srna, "MLoopUV");
RNA_def_struct_path_func(srna, "rna_MeshUVLoop_path");
@@ -1495,11 +1493,11 @@ static void rna_def_mloopuv(BlenderRNA *brna)
prop= RNA_def_property(srna, "select", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", MLOOPUV_VERTSEL);
- RNA_def_property_ui_text(prop, "UV Pinned", "");
+ RNA_def_property_ui_text(prop, "UV Select", "");
prop= RNA_def_property(srna, "select_edge", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", MLOOPUV_EDGESEL);
- RNA_def_property_ui_text(prop, "UV Pinned", "");
+ RNA_def_property_ui_text(prop, "UV Edge Select", "");
}
static void rna_def_mtface(BlenderRNA *brna)