Allow visualizing Alpha only layers for review as a color matte

This commit is contained in:
Roy Nieterau 2025-10-30 22:31:49 +01:00
parent ad5368eaa2
commit cb81a57ddd

View file

@ -487,6 +487,11 @@ def get_review_info_by_layer_name(channel_names):
elif "Z" in channel_info:
rgb = "Z", "Z", "Z"
# Has only A channel (Alpha layer)
elif "A" in channel_info:
rgb = "A", "A", "A"
alpha = None
else:
# No reviewable channels found
continue