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:
authorNicholas Bishop <nicholasbishop@gmail.com>2008-01-13 00:51:23 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2008-01-13 00:51:23 +0300
commit800d4de5d6368c9571f5e70924f9161eca266287 (patch)
tree7a8c8d19c9f5ef66acb57bbae4882a9c418ed4bf /source
parent4830f12680b963d6d95fe0bd5ed4d3d9acb6eeb6 (diff)
== Sculpt ==
Fix for the initial brush shape; wasn't initialized properly on older files.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/scene.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index 47640ad07ae..cfec0e3b439 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -703,4 +703,6 @@ void sculpt_reset_curve(SculptData *sd)
cm->curve[4].y= 0.20611;
cm->curve[5].x= 1;
cm->curve[5].y= 0;
+
+ curvemapping_changed(sd->cumap, 0);
}