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:
authorHans Goudey <h.goudey@me.com>2019-11-25 22:06:41 +0300
committerHans Goudey <h.goudey@me.com>2019-11-25 22:06:41 +0300
commitbd5e3941deb4a74de0fb50c5753c7e3e5028c43a (patch)
tree627b8f3d6648c581b291a0c50e32e310fd0a6f22 /source/blender/modifiers/intern/MOD_bevel.c
parent3f87ac368483f0dcf86a1e3057ce8a6fbbe702ac (diff)
Bevel Modifier: Reset default width to 0.1 from 1.0
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 17384f133b1..f5bb1cb0ef8 100644
--- a/source/blender/modifiers/intern/MOD_bevel.c
+++ b/source/blender/modifiers/intern/MOD_bevel.c
@@ -49,7 +49,7 @@ static void initData(ModifierData *md)
{
BevelModifierData *bmd = (BevelModifierData *)md;
- bmd->value = 1.0f;
+ bmd->value = 0.1f;
bmd->res = 1;
bmd->flags = 0;
bmd->val_flags = MOD_BEVEL_AMT_OFFSET;