[Bf-blender-cvs] [6e1fa2b0630] blender2.8: Fix small Python/typo on "Outliner Collection Operation"

Dalai Felinto noreply at git.blender.org
Thu Oct 26 15:54:50 CEST 2017


Commit: 6e1fa2b0630562c76d249a5c78c5737163a542e3
Author: Dalai Felinto
Date:   Thu Oct 26 11:54:42 2017 -0200
Branches: blender2.8
https://developer.blender.org/rB6e1fa2b0630562c76d249a5c78c5737163a542e3

Fix small Python/typo on "Outliner Collection Operation"

===================================================================

M	source/blender/editors/space_outliner/outliner_tools.c

===================================================================

diff --git a/source/blender/editors/space_outliner/outliner_tools.c b/source/blender/editors/space_outliner/outliner_tools.c
index edd897fbbab..bc0884f9378 100644
--- a/source/blender/editors/space_outliner/outliner_tools.c
+++ b/source/blender/editors/space_outliner/outliner_tools.c
@@ -1802,7 +1802,7 @@ static EnumPropertyItem prop_collection_op_types[] = {
     {OL_COLLECTION_OP_OBJECTS_REMOVE, "OBJECTS_REMOVE", ICON_X, "Remove Selected", "Remove selected objects from collection"},
     {OL_COLLECTION_OP_COLLECTION_NEW, "COLLECTION_NEW", ICON_NEW, "New Collection", "Add a new nested collection"},
     {OL_COLLECTION_OP_COLLECTION_UNLINK, "COLLECTION_UNLINK", ICON_UNLINKED, "Unlink", "Unlink collection"},
-    {OL_COLLECTION_OP_COLLECTION_DEL, "COLLECTION_NEW", ICON_X, "Delete Collection", "Delete the collection"},
+    {OL_COLLECTION_OP_COLLECTION_DEL, "COLLECTION_DEL", ICON_X, "Delete Collection", "Delete the collection"},
     {0, NULL, 0, NULL, NULL}
 };



More information about the Bf-blender-cvs mailing list