Skip to content

Commit

Permalink
Fix T85357: Setting collection color restricted to View Layer mode
Browse files Browse the repository at this point in the history
Allow setting collection color in Scenes and Blender File outliner
display modes in addition to View Layer mode.
  • Loading branch information
natecraddock committed Feb 4, 2021
1 parent 760a16b commit 7fb540b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release/scripts/startup/bl_ui/space_outliner.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@ def draw(self, context):
if space.display_mode == 'VIEW_LAYER':
layout.separator()
layout.menu("OUTLINER_MT_collection_view_layer", icon='RENDERLAYERS')
layout.separator()

row = layout.row(align=True)
row.operator_enum("outliner.collection_color_tag_set", "color", icon_only=True)
layout.separator()
row = layout.row(align=True)
row.operator_enum("outliner.collection_color_tag_set", "color", icon_only=True)

layout.separator()

Expand Down

0 comments on commit 7fb540b

Please sign in to comment.