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:
authorCampbell Barton <ideasman42@gmail.com>2017-03-19 18:07:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-19 18:07:24 +0300
commit84935998a73de367b31e3e9604942125601de553 (patch)
treeae3c45776cef66ab2a2dbbc558689e882b4f03a5 /release/scripts/startup/bl_ui
parent56d3cc9341862761454e927af04c120bbeabfa2a (diff)
Add missing classes from recent commit
Diffstat (limited to 'release/scripts/startup/bl_ui')
-rw-r--r--release/scripts/startup/bl_ui/properties_freestyle.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_freestyle.py b/release/scripts/startup/bl_ui/properties_freestyle.py
index aee35c70ec8..89024a52c25 100644
--- a/release/scripts/startup/bl_ui/properties_freestyle.py
+++ b/release/scripts/startup/bl_ui/properties_freestyle.py
@@ -828,6 +828,16 @@ class MATERIAL_PT_freestyle_line(MaterialFreestyleButtonsPanel, Panel):
row.prop(mat, "line_priority", text="Priority")
+classes = (
+ MATERIAL_PT_freestyle_line,
+ RENDERLAYER_PT_freestyle,
+ RENDERLAYER_PT_freestyle_lineset,
+ RENDERLAYER_PT_freestyle_linestyle,
+ RENDERLAYER_UL_linesets,
+ RENDER_MT_lineset_specials,
+ RENDER_PT_freestyle,
+)
+
if __name__ == "__main__": # only for live edit.
from bpy.utils import register_class
for cls in classes: