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:
authorAntony Riakiotakis <kalast@gmail.com>2015-02-11 17:27:50 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-02-11 17:29:24 +0300
commit44f09c93d1e2b627c30186a446eee8d39f45ccbc (patch)
tree3a32874860e2c0a91f232e57c0d6aa08fca2ddcf /source
parent743a67c6cba6a85467542694c9c6f88b3bf29aa7 (diff)
Use line curve for cavity mask instead of sharp as default when no curve
is found during loading
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 5e481369546..66fbca395a8 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -5437,7 +5437,7 @@ static void direct_link_paint(FileData *fd, Paint *p)
if (p->cavity_curve)
direct_link_curvemapping(fd, p->cavity_curve);
else
- BKE_paint_cavity_curve_preset(p, CURVE_PRESET_SHARP);
+ BKE_paint_cavity_curve_preset(p, CURVE_PRESET_LINE);
}
static void direct_link_paint_helper(FileData *fd, Paint **paint)