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:
authorBrecht Van Lommel <brecht@blender.org>2022-10-07 18:40:06 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-10-07 18:59:22 +0300
commit9cf2b413c2f3d138077859eaa795a459b7996e8e (patch)
tree0d7ef873152b37b9b040aa3b0ceb683ed0620b4e /intern/cycles/blender/addon/properties.py
parent349091ce00d5ad0b8bca6c7e5ed7314ed1176c3b (diff)
Fix small errors in tool tips for path guiding
Contributed by Alaska. Differential Revision: https://developer.blender.org/D16166
Diffstat (limited to 'intern/cycles/blender/addon/properties.py')
-rw-r--r--intern/cycles/blender/addon/properties.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index b5ac39d09e6..b7ce76d8f44 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -525,8 +525,8 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
use_deterministic_guiding: BoolProperty(
name="Deterministic",
- description="Makes path guiding deterministic which means renderings will be"
- "reproducible with the same pixel values every time. This feature slows down"
+ description="Makes path guiding deterministic which means renderings will be "
+ "reproducible with the same pixel values every time. This feature slows down "
"training",
default=True,
)
@@ -562,7 +562,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
description="The maximum number of samples used for training path guiding. "
"Higher samples lead to more accurate guiding, however may also unnecessarily slow "
"down rendering once guiding is accurate enough. "
- "A value 0 will continue training until the last sample",
+ "A value of 0 will continue training until the last sample",
min=0,
soft_min=1,
default=128,