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:
authorCampbell Barton <ideasman42@gmail.com>2012-05-29 09:48:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-29 09:48:07 +0400
commitb6a28065c945b4470d521308aca52e81f6cc2264 (patch)
treec74c1e88b5841e83a5d75ce963b57ab381ae2cc0 /source/blender/makesrna/intern/rna_nodetree.c
parent8ab667c17491c16573289471fea3647830b589f5 (diff)
parentb0de69b48f8836939b807f3671bbeb8cc3bf6899 (diff)
svn merge ^/trunk/blender -r47103:47150
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 955aac83a5c..59c4af4c376 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -4019,7 +4019,8 @@ static void rna_def_composite_nodetree(BlenderRNA *brna)
prop = RNA_def_property(srna, "chunk_size", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "chunksize");
- 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_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);