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:
authorBastien Montagne <bastien@blender.org>2021-09-28 19:29:02 +0300
committerBastien Montagne <bastien@blender.org>2021-09-28 19:30:33 +0300
commitb32b38b3805fea5baec551acd1a98c4a58b2bb1c (patch)
tree3a332f06a312a77888cc62cf3f8cb5233ce1344f /source/blender/editors/object/object_add.c
parentf35ea668a11d80fb37526f637f95db2c79eb1e91 (diff)
Fix T89400: Possible to delete objects used by overrides of collections.
This should not be allowed in general, added some initial call to check when user is allowed to delete a data to search for mandatory override usages...
Diffstat (limited to 'source/blender/editors/object/object_add.c')
-rw-r--r--source/blender/editors/object/object_add.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 236246924a9..cc4f2acc346 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -75,6 +75,7 @@
#include "BKE_lattice.h"
#include "BKE_layer.h"
#include "BKE_lib_id.h"
+#include "BKE_lib_override.h"
#include "BKE_lib_query.h"
#include "BKE_lib_remap.h"
#include "BKE_light.h"
@@ -2015,6 +2016,15 @@ static int object_delete_exec(bContext *C, wmOperator *op)
continue;
}
+ if (!BKE_lib_override_library_id_is_user_deletable(bmain, &ob->id)) {
+ /* Can this case ever happen? */
+ BKE_reportf(op->reports,
+ RPT_WARNING,
+ "Cannot delete object '%s' as it used by override collections",
+ ob->id.name + 2);
+ continue;
+ }
+
if (ID_REAL_USERS(ob) <= 1 && ID_EXTRA_USERS(ob) == 0 &&
BKE_library_ID_is_indirectly_used(bmain, ob)) {
BKE_reportf(op->reports,