From 5050572e898993fc0ddcd01be9b728a73c53b3bc Mon Sep 17 00:00:00 2001 From: Lukas Stockner Date: Sun, 30 Oct 2016 13:51:03 +0100 Subject: [PATCH] Cycles: Style Fix: Light sampling threshold description --- intern/cycles/blender/addon/properties.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, )