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:
authorDalai Felinto <dfelinto@gmail.com>2017-02-16 12:54:09 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-02-16 16:39:56 +0300
commit011c8c730fb3efc9e00855911d4df5deb3f0c0f5 (patch)
tree580e3617113cc99e8741af341c5755b72c2f8e81 /source/blender/editors/space_outliner/outliner_ops.c
parent3d63b9a88f969f2766cb37c8d3c937e1054a8154 (diff)
Outliner collection operators, all but collection link
Note: It may be missing a notifier to prevent Outliner from crashing when deleting collections.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_ops.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_ops.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/source/blender/editors/space_outliner/outliner_ops.c b/source/blender/editors/space_outliner/outliner_ops.c
index d5adfeda980..bdbad00a670 100644
--- a/source/blender/editors/space_outliner/outliner_ops.c
+++ b/source/blender/editors/space_outliner/outliner_ops.c
@@ -86,17 +86,16 @@ void outliner_operatortypes(void)
WM_operatortype_append(OUTLINER_OT_group_link);
/* collections */
- WM_operatortype_append(OUTLINER_OT_collections_delete);
- WM_operatortype_append(OUTLINER_OT_collections_select);
- WM_operatortype_append(OUTLINER_OT_collections_rename);
- WM_operatortype_append(OUTLINER_OT_collections_link);
- WM_operatortype_append(OUTLINER_OT_collections_unlink);
- WM_operatortype_append(OUTLINER_OT_collections_new);
- WM_operatortype_append(OUTLINER_OT_collections_override_new);
- WM_operatortype_append(OUTLINER_OT_collections_objects_add);
- WM_operatortype_append(OUTLINER_OT_collections_objects_remove);
- WM_operatortype_append(OUTLINER_OT_collections_objects_select);
- WM_operatortype_append(OUTLINER_OT_collections_objects_deselect);
+ WM_operatortype_append(OUTLINER_OT_collection_delete);
+ WM_operatortype_append(OUTLINER_OT_collection_select);
+ WM_operatortype_append(OUTLINER_OT_collection_link);
+ WM_operatortype_append(OUTLINER_OT_collection_unlink);
+ WM_operatortype_append(OUTLINER_OT_collection_new);
+ WM_operatortype_append(OUTLINER_OT_collection_override_new);
+ WM_operatortype_append(OUTLINER_OT_collection_objects_add);
+ WM_operatortype_append(OUTLINER_OT_collection_objects_remove);
+ WM_operatortype_append(OUTLINER_OT_collection_objects_select);
+ WM_operatortype_append(OUTLINER_OT_collection_objects_deselect);
}
void outliner_keymap(wmKeyConfig *keyconf)