From c257e1a2988df786950b75eedb9e3233f2e97631 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 6 Jun 2019 14:42:51 +1000 Subject: Fix use of removed Image.use_alpha property Change missing from 7aaa7aa9dd79b8c6 --- release/scripts/startup/bl_ui/properties_texture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- cgit v1.2.3