Fix T57848: Transforming large linked instances freezes Blender

This commit is contained in:
Sergey Sharybin 2018-11-15 13:55:15 +01:00
parent 71fd7e610a
commit cdfc128267
Notes: blender-bot 2023-02-14 09:48:25 +01:00
Referenced by issue #57828, Crash - hair dynamic playback
1 changed files with 5 additions and 2 deletions

View File

@ -1799,8 +1799,11 @@ static bool foreach_object_ptcache(Scene *scene,
if (current_object == object) {
continue;
}
foreach_object_ptcache(
scene, object, duplis, callback, callback_user_data);
foreach_object_ptcache(scene,
current_object,
duplis,
callback,
callback_user_data);
}
FOREACH_COLLECTION_OBJECT_RECURSIVE_END;
}