[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46859] trunk/blender/source/blender/ makesrna/intern/rna_nodetree.c: Fix for [#31413] Code review testing: Regarding chunksize, could the

Jeroen Bakker j.bakker at atmind.nl
Mon May 21 22:21:33 CEST 2012


Revision: 46859
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46859
Author:   jbakker
Date:     2012-05-21 20:21:32 +0000 (Mon, 21 May 2012)
Log Message:
-----------
Fix for [#31413] Code review testing: Regarding chunksize, could the
tooltip be made more clear

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

Modified: trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2012-05-21 20:10:21 UTC (rev 46858)
+++ trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2012-05-21 20:21:32 UTC (rev 46859)
@@ -3925,16 +3925,16 @@
 	prop= RNA_def_property(srna, "render_quality", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "render_quality");
 	RNA_def_property_enum_items(prop, node_quality_items);
-	RNA_def_property_ui_text(prop, "Render quality", "Quality when rendering");
+	RNA_def_property_ui_text(prop, "Render Quality", "Quality when rendering");
 
 	prop= RNA_def_property(srna, "edit_quality", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "edit_quality");
 	RNA_def_property_enum_items(prop, node_quality_items);
-	RNA_def_property_ui_text(prop, "Edit quality", "Quality when editing");
+	RNA_def_property_ui_text(prop, "Edit Quality", "Quality when editing");
 
 	prop= RNA_def_property(srna, "chunksize", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "chunksize");
-	RNA_def_property_ui_text(prop, "Chunksize", "Max size of a chunk during calculation");
+	RNA_def_property_ui_text(prop, "Chunksize", "Max size of a tile. Smaller values gives better distribution of multiple threads, but more overhead.");
 	RNA_def_property_range(prop, 32, 1024);
 
 	prop= RNA_def_property(srna, "use_opencl", PROP_BOOLEAN, PROP_NONE);




More information about the Bf-blender-cvs mailing list