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:
authorDaniel Genrich <daniel.genrich@gmx.net>2008-07-25 22:57:16 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2008-07-25 22:57:16 +0400
commitd7fecc9e963d8823d3e6a045c96d3a166ac031a6 (patch)
tree80f91447a2112454b2651d12fbf2bedada2d9076 /source/blender/src/editmesh.c
parent9bf0bfcae74f27e5bc2d5b20a70b21c3668542e4 (diff)
Fluid control: WIP commit before weekend, not working is crashing on the first 3 frames
Diffstat (limited to 'source/blender/src/editmesh.c')
-rw-r--r--source/blender/src/editmesh.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/blender/src/editmesh.c b/source/blender/src/editmesh.c
index 188f7476728..487f5f80bfc 100644
--- a/source/blender/src/editmesh.c
+++ b/source/blender/src/editmesh.c
@@ -1601,15 +1601,6 @@ void separate_mesh(void)
return;
}
- /* blender crashes in derivedmesh drawing if I don't do this... but why?
- Anyhoo, this function is horrible anyway (ton)
- the fluidsimFlag also has to be reset btw. (n_t) */
- if(G.obedit->fluidsimSettings) {
- fluidsimSettingsFree(G.obedit->fluidsimSettings);
- G.obedit->fluidsimSettings = NULL;
- G.obedit->fluidsimFlag = 0;
- }
-
if(em->selected.first) BLI_freelistN(&(em->selected)); /* clear the selection order */
EM_selectmode_set(); // enforce full consistant selection flags
@@ -1782,13 +1773,6 @@ void separate_mesh_loose(void)
error("Can't separate a mesh with vertex keys");
return;
}
-
- /* same problem as in separate_mesh above (n_t) */
- if(G.obedit->fluidsimSettings) {
- fluidsimSettingsFree(G.obedit->fluidsimSettings);
- G.obedit->fluidsimSettings = NULL;
- G.obedit->fluidsimFlag = 0;
- }
TEST_EDITMESH
if(multires_test()) return;