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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-01-15 20:55:40 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-01-15 20:55:40 +0300
commit588f2d294413f14951811126cd9b0c6c4fa5ec72 (patch)
tree5d774ce6c4cf9aaee521e035604b83bdf88291a7 /source/blender/editors/physics/physics_fluid.c
parent68462a941946af8d39d817101a3746e31365e8c9 (diff)
Fix T72970: [Mantaflow] When changing the domain settings, the current frame of the scene is set to 1
Diffstat (limited to 'source/blender/editors/physics/physics_fluid.c')
-rw-r--r--source/blender/editors/physics/physics_fluid.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/editors/physics/physics_fluid.c b/source/blender/editors/physics/physics_fluid.c
index 9cc26920251..64dd461fb4e 100644
--- a/source/blender/editors/physics/physics_fluid.c
+++ b/source/blender/editors/physics/physics_fluid.c
@@ -475,7 +475,6 @@ static void fluid_free_startjob(void *customdata, short *stop, short *do_update,
{
FluidJob *job = customdata;
FluidDomainSettings *mds = job->mmd->domain;
- Scene *scene = job->scene;
job->stop = stop;
job->do_update = do_update;
@@ -512,9 +511,6 @@ static void fluid_free_startjob(void *customdata, short *stop, short *do_update,
*do_update = true;
*stop = 0;
- /* Reset scene frame to cache frame start */
- CFRA = mds->cache_frame_start;
-
/* Update scene so that viewport shows freed up scene */
ED_update_for_newframe(job->bmain, job->depsgraph);
}