From ff2fa5968931ff49fb554786543422367e6f2187 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Wed, 15 Jul 2020 12:45:40 +0200 Subject: Fix T76690: Incorrect liquid particle count displayed Reviewers: sergey, sebbas Differential Revision: https://developer.blender.org/D7852 --- source/blender/blenkernel/intern/particle_system.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c index cd821077292..bf9aea81181 100644 --- a/source/blender/blenkernel/intern/particle_system.c +++ b/source/blender/blenkernel/intern/particle_system.c @@ -4966,6 +4966,7 @@ void particle_system_update(struct Depsgraph *depsgraph, psys_orig->flag = (psys->flag & ~PSYS_SHARED_CACHES); psys_orig->cfra = psys->cfra; psys_orig->recalc = psys->recalc; + psys_orig->part->totpart = part->totpart; } } -- cgit v1.2.3