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:
authorDalai Felinto <dfelinto@gmail.com>2017-10-25 17:25:22 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-10-25 17:25:43 +0300
commit86899c1adf15797ff77c3d1389a0a059a0fdb997 (patch)
treee64b0e9c58fc69a60b078008affaa0963a75f222 /release/scripts/freestyle/modules/parameter_editor.py
parentb90e2607a094907cc67dcac8bc3643cd9be6f920 (diff)
Fix freestyle UI after workspace > engine changes
Diffstat (limited to 'release/scripts/freestyle/modules/parameter_editor.py')
-rw-r--r--release/scripts/freestyle/modules/parameter_editor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/freestyle/modules/parameter_editor.py b/release/scripts/freestyle/modules/parameter_editor.py
index b093920a4cb..7e8d87bb465 100644
--- a/release/scripts/freestyle/modules/parameter_editor.py
+++ b/release/scripts/freestyle/modules/parameter_editor.py
@@ -1538,7 +1538,7 @@ def process(layer_name, lineset_name):
raise RuntimeError("No Thickness modifier with type", type(m), m)
# -- Textures -- #
has_tex = False
- if scene.render.use_shading_nodes:
+ if scene.view_render.use_shading_nodes:
if linestyle.use_nodes and linestyle.node_tree:
shaders_list.append(BlenderTextureShader(linestyle.node_tree))
has_tex = True