[Bf-extensions-cvs] [9e0dc9b9] master: Fix T68427: Freestyle SVG Exporter addon not showing "Freestyle Line Style SVG Export" property panel

Robert Guetzkow noreply at git.blender.org
Mon Aug 12 09:36:20 CEST 2019


Commit: 9e0dc9b9d3c4c83eee207324ea9df0bf6e619617
Author: Robert Guetzkow
Date:   Mon Aug 12 09:27:23 2019 +0200
Branches: master
https://developer.blender.org/rBA9e0dc9b9d3c4c83eee207324ea9df0bf6e619617

Fix T68427: Freestyle SVG Exporter addon not showing "Freestyle Line
Style SVG Export" property panel

Fixed wrong bl_context from render_layer to view_layer

===================================================================

M	render_freestyle_svg.py

===================================================================

diff --git a/render_freestyle_svg.py b/render_freestyle_svg.py
index bd2913f1..45d36790 100644
--- a/render_freestyle_svg.py
+++ b/render_freestyle_svg.py
@@ -183,7 +183,7 @@ class SVGExporterLinesetPanel(bpy.types.Panel):
     bl_space_type = 'PROPERTIES'
     bl_label = "Freestyle Line Style SVG Export"
     bl_region_type = 'WINDOW'
-    bl_context = "render_layer"
+    bl_context = "view_layer"
 
     def draw(self, context):
         layout = self.layout



More information about the Bf-extensions-cvs mailing list