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>2012-07-04 19:04:38 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-07-04 19:04:38 +0400
commit558721ab59bd4e6186005f5e9aca50e094c9e72c (patch)
tree1f6800b8f473d452e9282c762f0a73900c69988e /intern/cycles/blender
parent715edceb42c2624ca691d2a7edef3583c2a2b0c2 (diff)
More spell checking.
Diffstat (limited to 'intern/cycles/blender')
-rw-r--r--intern/cycles/blender/addon/properties.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index e2f82096901..7a22cba316e 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -143,7 +143,9 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
cls.min_bounces = IntProperty(
name="Min Bounces",
- description="Minimum number of bounces, setting this lower than the maximum enables probalistic path termination (faster but noisier)",
+ description="Minimum number of bounces, setting this lower "
+ "than the maximum enables probabilistic path "
+ "termination (faster but noisier)",
min=0, max=1024,
default=3,
)
@@ -175,7 +177,10 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
cls.transparent_min_bounces = IntProperty(
name="Transparent Min Bounces",
- description="Minimum number of transparent bounces, setting this lower than the maximum enables probalistic path termination (faster but noisier)",
+ description="Minimum number of transparent bounces, setting "
+ "this lower than the maximum enables "
+ "probabilistic path termination (faster but "
+ "noisier)",
min=0, max=1024,
default=8,
)