Commit: c257e1a2988df786950b75eedb9e3233f2e97631
Author: Campbell Barton
Date: Thu Jun 6 14:42:51 2019 +1000
Branches: master
https://developer.blender.org/rBc257e1a2988df786950b75eedb9e3233f2e97631
Fix use of removed Image.use_alpha property
Change missing from 7aaa7aa9dd79b8c6
===================================================================
M release/scripts/startup/bl_ui/properties_texture.py
===================================================================
diff --git a/release/scripts/startup/bl_ui/properties_texture.py
b/release/scripts/startup/bl_ui/properties_texture.py
index 946083ea4e9..41c17831c2c 100644
--- a/release/scripts/startup/bl_ui/properties_texture.py
+++ b/release/scripts/startup/bl_ui/properties_texture.py
@@ -438,7 +438,7 @@ class TEXTURE_PT_image_alpha(TextureTypePanel, Panel):
tex = context.texture
col = layout.column()
- col.active = bool(tex.image and tex.image.use_alpha)
+ col.active = bool(tex.image and tex.image.alpha_mode != 'NONE')
col.prop(tex, "use_calculate_alpha", text="Calculate")
col.prop(tex, "invert_alpha", text="Invert")
_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs