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:
authorLukas Stockner <lukas.stockner@freenet.de>2016-10-30 15:51:03 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2016-10-30 15:51:49 +0300
commit5050572e898993fc0ddcd01be9b728a73c53b3bc (patch)
tree9ed41ad1251234240d8df9868535f342f299a091 /intern/cycles/blender
parentb6d35e1fa74076e5072e53dad63dc712f85a7027 (diff)
Cycles: Style Fix: Light sampling threshold description
Diffstat (limited to 'intern/cycles/blender')
-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 ede3ece5bce..a8ab9100ded 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -269,7 +269,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
cls.light_sampling_threshold = FloatProperty(
name="Light Sampling Threshold",
description="Probabilistically terminate light samples when the light contribution is below this threshold (more noise but faster rendering). "
- "Zero disables the test and never ignores lights.",
+ "Zero disables the test and never ignores lights",
min=0.0, max=1.0,
default=0.05,
)