[Bf-blender-cvs] [30897a56e72] sculpt-dev: Fix T85633: Misspelling of "neighborhood" in description

Hans Goudey noreply at git.blender.org
Mon Feb 15 22:56:49 CET 2021


Commit: 30897a56e727fc6f3fb760cc16e0d253fba909fe
Author: Hans Goudey
Date:   Sun Feb 14 15:31:01 2021 -0600
Branches: sculpt-dev
https://developer.blender.org/rB30897a56e727fc6f3fb760cc16e0d253fba909fe

Fix T85633: Misspelling of "neighborhood" in description

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

M	source/blender/draw/engines/eevee/shaders/effect_dof_dilate_tiles_frag.glsl
M	source/blender/makesrna/intern/rna_scene.c

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

diff --git a/source/blender/draw/engines/eevee/shaders/effect_dof_dilate_tiles_frag.glsl b/source/blender/draw/engines/eevee/shaders/effect_dof_dilate_tiles_frag.glsl
index d52a9e6757f..22e6f929f36 100644
--- a/source/blender/draw/engines/eevee/shaders/effect_dof_dilate_tiles_frag.glsl
+++ b/source/blender/draw/engines/eevee/shaders/effect_dof_dilate_tiles_frag.glsl
@@ -1,7 +1,7 @@
 
 /**
  * Tile dilate pass: Takes the 8x8 Tiles buffer and converts dilates the tiles with large CoC to
- * their neighboorhod. This pass is repeated multiple time until the maximum CoC can be covered.
+ * their neighborhood. This pass is repeated multiple time until the maximum CoC can be covered.
  **/
 
 #pragma BLENDER_REQUIRE(effect_dof_lib.glsl)
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 938f051cd55..9479d15c2cc 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -7388,7 +7388,7 @@ static void rna_def_scene_eevee(BlenderRNA *brna)
   RNA_def_property_ui_text(prop,
                            "Neighbor Rejection",
                            "Maximum brightness to consider when rejecting bokeh sprites "
-                           "based on neighboorhod (lower is faster)");
+                           "based on neighborhood (lower is faster)");
   RNA_def_property_range(prop, 0.0f, 100000.0f);
   RNA_def_property_ui_range(prop, 0.0f, 40.0f, 10, 2);
   RNA_def_property_override_flag(prop, PROPOVERRIDE_OVERRIDABLE_LIBRARY);



More information about the Bf-blender-cvs mailing list