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
path: root/source
diff options
context:
space:
mode:
authorUjwal Kundur <ajax>2022-04-07 01:05:33 +0300
committerFabian Schempp <fabianschempp@googlemail.com>2022-04-11 01:31:59 +0300
commit289b2de73bae908fda2fb193629f59fae19407f1 (patch)
tree091a9666d204e47555fb9f9f5ffb3d35a50fdc17 /source
parent20a90ad2097438a0c4eb76292b862cbbe32f46c3 (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
Diffstat (limited to 'source')
-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)