[Bf-blender-cvs] [057a8afb879] master: Fix T84024: Empty image opacity labeled transparency

Hans Goudey noreply at git.blender.org
Fri Jan 1 19:08:11 CET 2021


Commit: 057a8afb879c58fa40b10a2ab55debded82d19bb
Author: Hans Goudey
Date:   Fri Jan 1 12:07:42 2021 -0600
Branches: master
https://developer.blender.org/rB057a8afb879c58fa40b10a2ab55debded82d19bb

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

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

M	release/scripts/startup/bl_ui/properties_data_empty.py

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

diff --git a/release/scripts/startup/bl_ui/properties_data_empty.py b/release/scripts/startup/bl_ui/properties_data_empty.py
index 7ded4c775a7..3f93cb85d37 100644
--- a/release/scripts/startup/bl_ui/properties_data_empty.py
+++ b/release/scripts/startup/bl_ui/properties_data_empty.py
@@ -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)



More information about the Bf-blender-cvs mailing list