Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-11 13:13:04 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-11 13:34:51 +0300
commitfdc0f4ad90973d43ccdf4892821dfc82c3ab3329 (patch)
tree4ed1c2a28474c442a40d0ecf5316058e6fa0f3f4
parentff39cbdc86ce671c91d0bacf5466ff089d4d5b4f (diff)
Fix Use Nodes not working for Cycles lights.
-rw-r--r--intern/cycles/blender/addon/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 6688874de49..03ce3835365 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -1056,7 +1056,7 @@ class CYCLES_OT_use_shading_nodes(Operator):
@classmethod
def poll(cls, context):
return (getattr(context, "material", False) or getattr(context, "world", False) or
- getattr(context, "lamp", False))
+ getattr(context, "light", False))
def execute(self, context):
if context.material: