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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-02-12 18:55:58 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-02-12 19:23:19 +0400
commit2be654b2ff5f3f93d0cafdd6a979ffae95fa8f28 (patch)
tree491a5b3adf45353bc2bb4f6cd4cc47190c2c8dc9 /source/blender/makesrna/intern/rna_scene.c
parent1c862f33a0f15ff3585d1f28edd7cee47e636a51 (diff)
Usual UI messages fixes...
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 939eceed647..a98737e500b 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2273,9 +2273,9 @@ void rna_def_render_layer_common(StructRNA *srna, int scene)
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
prop = RNA_def_property(srna, "pass_alpha_threshold", PROP_FLOAT, PROP_FACTOR);
- RNA_def_property_ui_text(prop, "Alpha Threshold", "Z, Index, normal, UV and vector passes are"
- "only affected by surfaces with alpha transparency equal to"
- "or higher than this threshold");
+ RNA_def_property_ui_text(prop, "Alpha Threshold",
+ "Z, Index, normal, UV and vector passes are only affected by surfaces with "
+ "alpha transparency equal to or higher than this threshold");
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
}