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
path: root/intern
diff options
context:
space:
mode:
authorNicholas Bishop <nicholasbishop@gmail.com>2012-04-08 20:19:13 +0400
committerNicholas Bishop <nicholasbishop@gmail.com>2012-04-08 20:19:13 +0400
commit1a9a8406fe1dad319d69a3f195255e629365fcaa (patch)
tree6533a3b690fe4c4e4819b48ad19a0b2bf6a8bb96 /intern
parent01e55b6fc347adeaa80800f2386eb1fb1f10a5e3 (diff)
Tiny fix for console warning, remove period from a description in Cycles.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/properties.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index d20507427b4..cb99ea3b499 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -176,7 +176,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
cls.sample_clamp = FloatProperty(
name="Clamp",
- description="If non-zero, the maximum value for a sample, higher values will be scaled down to avoid too much noise and slow convergence at the cost of accuracy.",
+ description="If non-zero, the maximum value for a sample, higher values will be scaled down to avoid too much noise and slow convergence at the cost of accuracy",
min=0.0, max=1e8,
default=0.0,
)