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:
authorThomas Dinges <blender@dingto.org>2014-09-07 03:35:20 +0400
committerThomas Dinges <blender@dingto.org>2014-09-07 03:36:00 +0400
commit1ff83d8a37b8117abe2ea8e500452a124e73d25e (patch)
treed96c0494218a10c2da575bfe002cd9fa1e93811c /intern
parent3a47c1a9d3eeaafce6efa4ef570583b6aba477cb (diff)
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!
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/properties.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 93f7b1d6abf..0ac0e0f091e 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,
)