Fix T84024: Empty image opacity labeled transparency

This value really is the opacity, or the alpha, since a value of 1.0 means
that the image is fully visible, not invisible like "full transparency"
would suggest. Mistake in rBea4d28aea0343a.

Differential Revision: https://developer.blender.org/D9920
This commit is contained in:
Hans Goudey 2021-01-01 12:07:42 -06:00
parent 0da1fc2fc4
commit 057a8afb87
Notes: blender-bot 2023-02-14 11:08:33 +01:00
Referenced by issue #84024, Empty Image Opacity labeled Transparency
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class DATA_PT_empty(DataButtonsPanel, Panel):
col.prop(ob, "show_empty_image_perspective", text="Perspective")
col.prop(ob, "show_empty_image_only_axis_aligned", text="Only Axis Aligned")
col = layout.column(align=False, heading="Transparency")
col = layout.column(align=False, heading="Opacity")
col.use_property_decorate = False
row = col.row(align=True)
sub = row.row(align=True)