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
path: root/source
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2009-12-04 08:05:50 +0300
committerMatt Ebb <matt@mke3.net>2009-12-04 08:05:50 +0300
commitd828062f1b4e14f1457978da57fda5be7d86e60a (patch)
treee34a9f3b334ed458ef0fac1ee94afa309314e085 /source
parente31f3e63cdafd92010179e528b0db31a0a32a27b (diff)
Fix for [#20157] 2.5 Can`t remove a linked objects from the 3D view by pressing X
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/object/object_add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 1cda61fe90f..0ce58461268 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -742,7 +742,7 @@ static int object_delete_exec(bContext *C, wmOperator *op)
if(CTX_data_edit_object(C))
return OPERATOR_CANCELLED;
- CTX_DATA_BEGIN(C, Base*, base, selected_editable_bases) {
+ CTX_DATA_BEGIN(C, Base*, base, selected_bases) {
if(base->object->type==OB_LAMP) islamp= 1;