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:
authorSergey Sharybin <sergey@blender.org>2021-01-13 18:29:51 +0300
committerSergey Sharybin <sergey@blender.org>2021-01-26 18:23:09 +0300
commitc1d0b234fbff45c11ecf74b1e5b346c3bbbaa513 (patch)
treebf823d094680c8bbbc4439ba623446b0272e1265 /source/blender/makesrna/intern/rna_modifier.c
parent8d51c06611c703bdb92d029837812db61a84db52 (diff)
Subdiv: Fix typo in RNA enum value name
Was duplicated from SUBSURF_UV_SMOOTH_PRESERVE_BOUNDARIES value.
Diffstat (limited to 'source/blender/makesrna/intern/rna_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c2
1 files changed, 1 insertions, 1 deletions
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},
};