From 7f635f2c9161d054fdea15c19b3f544e445b5953 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Fri, 23 Apr 2010 00:05:46 +0000 Subject: [PATCH] Fix for small error in r28348, was preventing texture influence panel from displaying --- release/scripts/ui/properties_texture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/ui/properties_texture.py b/release/scripts/ui/properties_texture.py index dc93bf446bd..bbcac5a974f 100644 --- a/release/scripts/ui/properties_texture.py +++ b/release/scripts/ui/properties_texture.py @@ -323,7 +323,7 @@ class TEXTURE_PT_influence(TextureSlotPanel): if type(idblock) == bpy.types.Brush: return False - if getattr(context, "texture_slot", None): + if not getattr(context, "texture_slot", None): return False engine = context.scene.render.engine