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:
authorGreg Neumiller <rlneumiller>2020-03-11 11:19:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-11 11:19:29 +0300
commitd0618570ebea0f68df90c8abd740cf7aa0e3f6d1 (patch)
tree92a6076a66269291c36f2c57c74f5fb4bf2814e9 /source/blender/modifiers/intern/MOD_bevel.c
parent1c9829f3518f909936e1410ea582e1f332318970 (diff)
UI: edit modifier messages to clarify where auto-smooth is set
Diffstat (limited to 'source/blender/modifiers/intern/MOD_bevel.c')
-rw-r--r--source/blender/modifiers/intern/MOD_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_bevel.c b/source/blender/modifiers/intern/MOD_bevel.c
index 9ec4d58eb61..de08533753e 100644
--- a/source/blender/modifiers/intern/MOD_bevel.c
+++ b/source/blender/modifiers/intern/MOD_bevel.c
@@ -206,7 +206,7 @@ static Mesh *applyModifier(ModifierData *md, const ModifierEvalContext *ctx, Mes
Object *ob = ctx->object;
if (harden_normals && (ob->type == OB_MESH) && !(((Mesh *)ob->data)->flag & ME_AUTOSMOOTH)) {
- modifier_setError(md, "Enable 'Auto Smooth' option in mesh settings for hardening");
+ modifier_setError(md, "Enable 'Auto Smooth' in Object Data Properties");
harden_normals = false;
}