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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-15 18:07:13 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-15 18:32:38 +0300
commit8c44e182f0805c5a964262de8fd8a4c392bb3c62 (patch)
tree158bc75be24f3efbf90632913d4d6167620a3c53 /source/blender/editors/space_outliner/outliner_tree.c
parent77d6c09dddedc714cdd8327e33c8d0ebcb128476 (diff)
Fix mistake in recent outliner rebuild change.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_tree.c')
-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 f8158c9ce7b..de8ee5420e7 100644
--- a/source/blender/editors/space_outliner/outliner_tree.c
+++ b/source/blender/editors/space_outliner/outliner_tree.c
@@ -2068,7 +2068,7 @@ void outliner_build_tree(Main *mainvar, Scene *scene, ViewLayer *view_layer, Spa
BKE_outliner_treehash_rebuild_from_treestore(soops->treehash, soops->treestore);
}
- if (ar->flag & RGN_DRAW_NO_REBUILD) {
+ if (ar->do_draw & RGN_DRAW_NO_REBUILD) {
return;
}