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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2014-01-20 17:11:12 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2014-01-20 17:16:22 +0400
commit018fe81779e81ad43b16c74969764ae3b71d4b40 (patch)
treed7b0c1a56e74055ea20358d2d88fa41090245a73 /source/blender/editors/sculpt_paint
parentaa18c4c445cbe7e5cbf0b766a42cfc9e4b764002 (diff)
Fix T38269: scene full copy in mesh edit or sculpt mode did not copy mesh edits.
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 8c3024ee072..331701cb486 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -104,19 +104,6 @@
#include <omp.h>
#endif
-void ED_sculpt_force_update(bContext *C)
-{
- Object *ob = CTX_data_active_object(C);
-
- if (ob && (ob->mode & OB_MODE_SCULPT)) {
- multires_force_update(ob);
-
- /* Set reorder=false so that saving the file doesn't reorder
- * the BMesh's elements */
- sculptsession_bm_to_me(ob, FALSE);
- }
-}
-
void ED_sculpt_get_average_stroke(Object *ob, float stroke[3])
{
if (ob->sculpt->last_stroke_valid && ob->sculpt->average_stroke_counter > 0) {