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 */

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to