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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-03-05 13:40:59 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-03-05 13:41:09 +0300
commit4ccbbd308060f0330472828b317c59e054c9ee7b (patch)
tree7e647c83b42bd9d4afe65852d30ad769c043fbfc /source
parentc328049535a4bc9453f5e93365a00759347e3a05 (diff)
Fix T74446: Liquid Inflow Does Not Work
Somehow this was forgotton in the optimization patch a5c4a44df67e.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/fluid.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/fluid.c b/source/blender/blenkernel/intern/fluid.c
index cfbbd6ea858..70595bfb1a3 100644
--- a/source/blender/blenkernel/intern/fluid.c
+++ b/source/blender/blenkernel/intern/fluid.c
@@ -626,7 +626,6 @@ static void clamp_bounds_in_domain(FluidDomainSettings *mds,
static bool is_static_object(Object *ob)
{
-
/* Check if the object has modifiers that might make the object "dynamic". */
ModifierData *md = ob->modifiers.first;
for (; md; md = md->next) {