From ea6de7626efdfca82e9140a8d8b0a7537be857fd Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 8 Dec 2011 00:28:42 +0000 Subject: removed some bmesh todo comments which are not needed and minor edits on previous commit. --- source/blender/makesrna/intern/rna_mesh.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source/blender/makesrna/intern/rna_mesh.c') 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) -- cgit v1.2.3