LibOverride: Fix missing ID update tag in BKE_lib_override_library_update.

This commit is contained in:
Bastien Montagne
2020-07-23 10:57:34 +02:00
parent ad602a3f03
commit 85157e74b3

View File

@@ -1342,6 +1342,7 @@ void BKE_lib_override_library_update(Main *bmain, ID *local)
/* Full rebuild of Depsgraph! */
/* Note: this is really brute force, in theory updates from RNA should have handle this already,
* but for now let's play it safe. */
DEG_id_tag_update_ex(bmain, local, ID_RECALC_ALL);
DEG_relations_tag_update(bmain);
}