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-01-26 20:27:30 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-01-26 20:27:30 +0300
commit40aa8a1c79a2de50eec963f52736b59e66b23d86 (patch)
treed8915ff0615b652f235603015e6c05b91bf52f65
parent51f77a10eb2aa01136a468f9b6f9952f42c76f4f (diff)
Fixup for selected_objects context
This was making crash happen for any operation :/ shame on me
-rw-r--r--source/blender/blenkernel/intern/layer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/layer.c b/source/blender/blenkernel/intern/layer.c
index f7b396b11c1..bb013b4aa46 100644
--- a/source/blender/blenkernel/intern/layer.c
+++ b/source/blender/blenkernel/intern/layer.c
@@ -643,7 +643,7 @@ void BKE_selected_objects_Iterator_begin(Iterator *iter, void *data_in)
void BKE_selected_objects_Iterator_next(Iterator *iter)
{
- object_bases_Iterator_next(iter, BASE_SELECTED);
+ objects_Iterator_next(iter, BASE_SELECTED);
}
void BKE_selected_objects_Iterator_end(Iterator *UNUSED(iter))