[Bf-blender-cvs] [1ff83d8] master: Cycles: Fix Caustic tooltips.

Thomas Dinges noreply at git.blender.org
Sun Sep 7 01:36:05 CEST 2014


Commit: 1ff83d8a37b8117abe2ea8e500452a124e73d25e
Author: Thomas Dinges
Date:   Sun Sep 7 01:35:20 2014 +0200
Branches: master
https://developer.blender.org/rB1ff83d8a37b8117abe2ea8e500452a124e73d25e

Cycles: Fix Caustic tooltips.

Now that the option has been reversed, the tooltips should be changed too.
Thanks to David Black, for bringing this up!

===================================================================

M	intern/cycles/blender/addon/properties.py

===================================================================

diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 93f7b1d..0ac0e0f 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -261,13 +261,13 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
 
         cls.caustics_reflective = BoolProperty(
                 name="Reflective Caustics",
-                description="Leave out reflective caustics, resulting in a darker image with less noise",
+                description="Use reflective caustics, resulting in a brighter image (more noise but added realism)",
                 default=True,
                 )
 
         cls.caustics_refractive = BoolProperty(
                 name="Refractive Caustics",
-                description="Leave out refractive caustics, resulting in a darker image with less noise",
+                description="Use refractive caustics, resulting in a brighter image (more noise but added realism)",
                 default=True,
                 )




More information about the Bf-blender-cvs mailing list