[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25582] trunk/blender/source/blender: Missed the mesh filter options from previous commit...

Joshua Leung aligorith at gmail.com
Mon Dec 28 01:55:45 CET 2009


Revision: 25582
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25582
Author:   aligorith
Date:     2009-12-28 01:55:44 +0100 (Mon, 28 Dec 2009)

Log Message:
-----------
Missed the mesh filter options from previous commit...

Modified Paths:
--------------
    trunk/blender/source/blender/editors/interface/interface_templates.c
    trunk/blender/source/blender/makesrna/intern/rna_action.c

Modified: trunk/blender/source/blender/editors/interface/interface_templates.c
===================================================================
--- trunk/blender/source/blender/editors/interface/interface_templates.c	2009-12-28 00:52:31 UTC (rev 25581)
+++ trunk/blender/source/blender/editors/interface/interface_templates.c	2009-12-28 00:55:44 UTC (rev 25582)
@@ -94,6 +94,8 @@
 	uiItemR(row, "", 0, ptr, "display_world", 0);
 	uiItemR(row, "", 0, ptr, "display_node", 0);
 
+	if (mainptr && mainptr->mesh.first)
+		uiItemR(row, "", 0, ptr, "display_mesh", 0);
 	if (mainptr && mainptr->key.first)
 		uiItemR(row, "", 0, ptr, "display_shapekeys", 0);
 	if (mainptr && mainptr->mat.first)

Modified: trunk/blender/source/blender/makesrna/intern/rna_action.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_action.c	2009-12-28 00:52:31 UTC (rev 25581)
+++ trunk/blender/source/blender/makesrna/intern/rna_action.c	2009-12-28 00:55:44 UTC (rev 25582)
@@ -94,10 +94,16 @@
 
 	prop= RNA_def_property(srna, "display_shapekeys", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_negative_sdna(prop, NULL, "filterflag", ADS_FILTER_NOSHAPEKEYS);
-	RNA_def_property_ui_text(prop, "Display Shapekeys", "Include visualization of Shapekey related Animation data.");
+	RNA_def_property_ui_text(prop, "Display Shapekeys", "Include visualization of ShapeKey related Animation data.");
 	RNA_def_property_ui_icon(prop, ICON_SHAPEKEY_DATA, 0);
 	RNA_def_property_update(prop, NC_ANIMATION|ND_ANIMCHAN_EDIT, NULL);
 
+	prop= RNA_def_property(srna, "display_meshes", PROP_BOOLEAN, PROP_NONE);
+	RNA_def_property_boolean_negative_sdna(prop, NULL, "filterflag", ADS_FILTER_NOMESH);
+	RNA_def_property_ui_text(prop, "Display Meshes", "Include visualization of Mesh related Animation data.");
+	RNA_def_property_ui_icon(prop, ICON_MESH_DATA, 0);
+	RNA_def_property_update(prop, NC_ANIMATION|ND_ANIMCHAN_EDIT, NULL);
+	
 	prop= RNA_def_property(srna, "display_camera", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_negative_sdna(prop, NULL, "filterflag", ADS_FILTER_NOCAM);
 	RNA_def_property_ui_text(prop, "Display Camera", "Include visualization of Camera related Animation data.");





More information about the Bf-blender-cvs mailing list