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:
authorTon Roosendaal <ton@blender.org>2009-07-25 19:05:51 +0400
committerTon Roosendaal <ton@blender.org>2009-07-25 19:05:51 +0400
commit5b12cb937890f1f85f365b4b1658cef241384ea2 (patch)
tree7d010d56194e1f74a3397f0614e9cc61c4837cfb /source/blender/editors/space_outliner
parent55e3a4a6f0a5aa6bca0c54da4693b40fbb6ac0d6 (diff)
2.5
Fix in previous commit: Outliner data view, rna levels didn't open/close correctly.
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c
index 40a365f956c..6ac094b3ad3 100644
--- a/source/blender/editors/space_outliner/outliner.c
+++ b/source/blender/editors/space_outliner/outliner.c
@@ -2259,7 +2259,6 @@ static int do_outliner_item_activate(bContext *C, Scene *scene, ARegion *ar, Spa
else tselem->flag |= TSE_CLOSED;
}
- soops->storeflag |= SO_TREESTORE_REDRAW;
return 1;
}
@@ -2371,8 +2370,6 @@ static int do_outliner_item_openclose(bContext *C, SpaceOops *soops, TreeElement
if(tselem->flag & TSE_CLOSED) tselem->flag &= ~TSE_CLOSED;
else tselem->flag |= TSE_CLOSED;
}
-
- soops->storeflag |= SO_TREESTORE_REDRAW;
return 1;
}