From 44f09c93d1e2b627c30186a446eee8d39f45ccbc Mon Sep 17 00:00:00 2001 From: Antony Riakiotakis Date: Wed, 11 Feb 2015 15:27:50 +0100 Subject: [PATCH] Use line curve for cavity mask instead of sharp as default when no curve is found during loading --- source/blender/blenloader/intern/readfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)