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 <montagne29@wanadoo.fr>2018-11-09 20:31:51 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-11-09 20:43:08 +0300
commit615e383ec2233affc0e18d2e0005a3d3ea730bed (patch)
treeea974b87d9987a528f65429fd17fd57226c98aec /source/blender/blenkernel/intern/collection.c
parent89a66633f1d039b2adf11de320812f8524d246a7 (diff)
Fix typo in assert that we do not delete master collection..
Diffstat (limited to 'source/blender/blenkernel/intern/collection.c')
-rw-r--r--source/blender/blenkernel/intern/collection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/collection.c b/source/blender/blenkernel/intern/collection.c
index c85632b423b..9cec20a8f2b 100644
--- a/source/blender/blenkernel/intern/collection.c
+++ b/source/blender/blenkernel/intern/collection.c
@@ -130,7 +130,7 @@ bool BKE_collection_delete(Main *bmain, Collection *collection, bool hierarchy)
{
/* Master collection is not real datablock, can't be removed. */
if (collection->flag & COLLECTION_IS_MASTER) {
- BLI_assert("!Scene master collection can't be deleted");
+ BLI_assert(!"Scene master collection can't be deleted");
return false;
}