[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [38553] trunk/blender/source/blender/ makesrna/intern/rna_object.c: add tip that duplicator system doesnt support xray / transp object draw options since we keep getting reports about this.

Campbell Barton ideasman42 at gmail.com
Thu Jul 21 03:37:17 CEST 2011


Revision: 38553
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=38553
Author:   campbellbarton
Date:     2011-07-21 01:37:15 +0000 (Thu, 21 Jul 2011)
Log Message:
-----------
add tip that duplicator system doesnt support xray / transp object draw options since we keep getting reports about this.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_object.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_object.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_object.c	2011-07-21 01:30:26 UTC (rev 38552)
+++ trunk/blender/source/blender/makesrna/intern/rna_object.c	2011-07-21 01:37:15 UTC (rev 38553)
@@ -2274,12 +2274,12 @@
 	
 	prop= RNA_def_property(srna, "show_transparent", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "dtx", OB_DRAWTRANSP);
-	RNA_def_property_ui_text(prop, "Draw Transparent", "Displays material transparency in the object");
+	RNA_def_property_ui_text(prop, "Draw Transparent", "Displays material transparency in the object (unsupported for duplicator drawing)");
 	RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, NULL);
 	
 	prop= RNA_def_property(srna, "show_x_ray", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "dtx", OB_DRAWXRAY);
-	RNA_def_property_ui_text(prop, "X-Ray", "Makes the object draw in front of others");
+	RNA_def_property_ui_text(prop, "X-Ray", "Makes the object draw in front of others (unsupported for duplicator drawing)");
 	RNA_def_property_update(prop, NC_OBJECT|ND_DRAW, NULL);
 	
 	/* Grease Pencil */




More information about the Bf-blender-cvs mailing list