[Bf-blender-cvs] [8c44e182f08] blender2.8: Fix mistake in recent outliner rebuild change.

Brecht Van Lommel noreply at git.blender.org
Tue May 15 17:34:07 CEST 2018


Commit: 8c44e182f0805c5a964262de8fd8a4c392bb3c62
Author: Brecht Van Lommel
Date:   Tue May 15 17:07:13 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB8c44e182f0805c5a964262de8fd8a4c392bb3c62

Fix mistake in recent outliner rebuild change.

===================================================================

M	source/blender/editors/space_outliner/outliner_tree.c

===================================================================

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;
 	}



More information about the Bf-blender-cvs mailing list