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:
authorUjwal Kundur <ajax>2022-04-07 01:05:33 +0300
committerHans Goudey <h.goudey@me.com>2022-04-07 01:05:33 +0300
commitf16033c0f578b2269012865f18080cdd2b7b582b (patch)
treed29698cdb6f7d1ac08451977720cabac59c7fc56
parent77ae30517f14b40669ef8a1978044598f6291191 (diff)
Fix T91541: Naming of Freestyle Curvature 3D modifier
Change the modifier name in the modifier stack to "Curvature 3D" to be consistent with the modifier name in the drop-down. Differential Revision: https://developer.blender.org/D14476
-rw-r--r--source/blender/blenkernel/intern/linestyle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/linestyle.c b/source/blender/blenkernel/intern/linestyle.c
index bbcc886f3ff..c0eb1955fdf 100644
--- a/source/blender/blenkernel/intern/linestyle.c
+++ b/source/blender/blenkernel/intern/linestyle.c
@@ -784,7 +784,7 @@ static const char *modifier_name[LS_MODIFIER_NUM] = {
"Noise",
"Crease Angle",
"Simplification",
- "3D Curvature",
+ "Curvature 3D",
};
void BKE_linestyle_init(FreestyleLineStyle *linestyle)