Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <j.bakker@atmind.nl>2012-05-22 00:21:32 +0400
committerJeroen Bakker <j.bakker@atmind.nl>2012-05-22 00:21:32 +0400
commit877dc587244b95e63ebc1e37e3692fa6fd5b85f7 (patch)
tree96ea3584d83eac2f7c4a20090c71373d38b2b52f /source/blender/makesrna
parent146e92311f55acd6a5f3fdd0aeaec3a75a537ab5 (diff)
Fix for [#31413] Code review testing: Regarding chunksize, could the
tooltip be made more clear
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 0ec372415be..e8ec8d8bb83 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -3925,16 +3925,16 @@ static void rna_def_composite_nodetree(BlenderRNA *brna)
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);