[Bf-blender-cvs] [c1d0b234fbf] master: Subdiv: Fix typo in RNA enum value name

Sergey Sharybin noreply at git.blender.org
Tue Jan 26 16:23:13 CET 2021


Commit: c1d0b234fbff45c11ecf74b1e5b346c3bbbaa513
Author: Sergey Sharybin
Date:   Wed Jan 13 16:29:51 2021 +0100
Branches: master
https://developer.blender.org/rBc1d0b234fbff45c11ecf74b1e5b346c3bbbaa513

Subdiv: Fix typo in RNA enum value name

Was duplicated from SUBSURF_UV_SMOOTH_PRESERVE_BOUNDARIES value.

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

M	source/blender/makesrna/intern/rna_modifier.c

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

diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index e02e47745b0..78cef590123 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -1657,7 +1657,7 @@ static void rna_def_property_subdivision_common(StructRNA *srna)
      "Smooth, keep corners",
      "UVs are smoothed, boundaries are kept sharp"},
 #  endif
-    {SUBSURF_UV_SMOOTH_ALL, "PRESERVE_BOUNDARIES", 0, "All", "UVs and boundaries are smoothed"},
+    {SUBSURF_UV_SMOOTH_ALL, "SMOOTH_ALL", 0, "All", "UVs and boundaries are smoothed"},
     {0, NULL, 0, NULL, NULL},
   };



More information about the Bf-blender-cvs mailing list