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:
authorJacques Lucke <mail@jlucke.com>2018-12-13 13:51:50 +0300
committerJacques Lucke <mail@jlucke.com>2018-12-13 13:52:27 +0300
commitae5f19e32ad334dd4a69af193fc4e0236ac3ca2e (patch)
tree674e1c2b902b4d778103447570046dfd25ca8367 /source/blender
parent6c39ea27c8c9b91c84ee8b3e870f9c7a3ba8d33b (diff)
Fix T59125: Outliner does not show view layer count
Reviewers: brecht Differential Revision: https://developer.blender.org/D4060
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 6cf7e2ce0a1..3ca7a510300 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1521,7 +1521,7 @@ static void outliner_draw_iconrow(
active = tree_element_type_active(C, scene, view_layer, soops, te, tselem, OL_SETSEL_NONE, false);
}
- if (!ELEM(tselem->type, 0, TSE_LAYER_COLLECTION)) {
+ if (!ELEM(tselem->type, 0, TSE_LAYER_COLLECTION, TSE_R_LAYER)) {
outliner_draw_iconrow_doit(block, te, fstyle, xmax, offsx, ys, alpha_fac, active, 1);
}
else {