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:
authorCampbell Barton <ideasman42@gmail.com>2011-09-16 06:08:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-09-16 06:08:00 +0400
commita6c15d6199a69b71668db4ece1d6a7e79763caa9 (patch)
treecdfa8f4da7e8a2887ac58f6a3cc5570fd0ec2b9b
parent84966d864bb49387212a2b4f227e80f6cfedfdea (diff)
fix [#28668] Crashes entering edit mode on Armature
-rw-r--r--source/blender/editors/space_outliner/outliner_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_tree.c b/source/blender/editors/space_outliner/outliner_tree.c
index 7e9eabc08db..60b6a0d856a 100644
--- a/source/blender/editors/space_outliner/outliner_tree.c
+++ b/source/blender/editors/space_outliner/outliner_tree.c
@@ -775,7 +775,7 @@ static void outliner_add_id_contents(SpaceOops *soops, TreeElement *te, TreeStor
ebone->temp= ten;
}
/* make hierarchy */
- ten= te->subtree.first;
+ ten= ((EditBone *)arm->edbo->first)->temp;
while(ten) {
TreeElement *nten= ten->next, *par;
ebone= (EditBone *)ten->directdata;