[Bf-blender-cvs] [9cf2b413c2f] master: Fix small errors in tool tips for path guiding

Brecht Van Lommel noreply at git.blender.org
Fri Oct 7 17:59:26 CEST 2022


Commit: 9cf2b413c2f3d138077859eaa795a459b7996e8e
Author: Brecht Van Lommel
Date:   Fri Oct 7 17:40:06 2022 +0200
Branches: master
https://developer.blender.org/rB9cf2b413c2f3d138077859eaa795a459b7996e8e

Fix small errors in tool tips for path guiding

Contributed by Alaska.

Differential Revision: https://developer.blender.org/D16166

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

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

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

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,



More information about the Bf-blender-cvs mailing list