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:
authorRaja Kedia(miyagix) <rajakedia2222@gmail.com>2017-07-22 05:33:14 +0300
committerRaja Kedia(miyagix) <rajakedia2222@gmail.com>2017-07-22 05:33:14 +0300
commita57841c4b0c60dbc28315989172815773f6dc6b2 (patch)
tree3adc9bca2b85602b945c0ba690268704c3f63969 /source/blender/blenkernel/intern
parentbb2b62c48f62b3bca7de347c8a0ec585c9171434 (diff)
Topograb: Tried changing normal for correct grab position. It has become unstable to some extend and crashes a bit in some case. Still works fine in normal mode
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/paint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/paint.c b/source/blender/blenkernel/intern/paint.c
index 72985a701cc..195f67d2bd9 100644
--- a/source/blender/blenkernel/intern/paint.c
+++ b/source/blender/blenkernel/intern/paint.c
@@ -863,7 +863,7 @@ void BKE_sculpt_update_mesh_elements(Scene *scene, Sculpt *sd, Object *ob,
ss->multires = mmd;
ss->totvert = dm->getNumVerts(dm);
ss->totpoly = dm->getNumPolys(dm);
- ss->mvert = NULL; // dm->getVertArray(dm);
+ ss->mvert = me->mvert;
ss->mpoly = NULL;
ss->mloop = NULL;
}