[Bf-blender-cvs] [69828cba533] blender-v2.82-release: UI: rename transparency to opacity

Campbell Barton noreply at git.blender.org
Wed Jan 22 07:45:28 CET 2020


Commit: 69828cba533d486d3c00578cd0bd03a5e2b8d1c6
Author: Campbell Barton
Date:   Wed Jan 22 17:43:15 2020 +1100
Branches: blender-v2.82-release
https://developer.blender.org/rB69828cba533d486d3c00578cd0bd03a5e2b8d1c6

UI: rename transparency to opacity

Calling it transparency makes value seem inverted, resolves T73306.

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

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 4ce87b85410..dc9c170c65b 100644
--- a/release/scripts/startup/bl_ui/properties_data_empty.py
+++ b/release/scripts/startup/bl_ui/properties_data_empty.py
@@ -49,7 +49,7 @@ class DATA_PT_empty(DataButtonsPanel, Panel):
 
             col = layout.column()
             col.active = ob.use_empty_image_alpha
-            col.prop(ob, "color", text="Transparency", index=3, slider=True)
+            col.prop(ob, "color", text="Opacity", index=3, slider=True)
 
             col = layout.column(align=True)
             col.prop(ob, "empty_image_offset", text="Offset X", index=0)



More information about the Bf-blender-cvs mailing list