Add missing classes from recent commit

This commit is contained in:
Campbell Barton 2017-03-20 02:07:24 +11:00
parent 56d3cc9341
commit 84935998a7
2 changed files with 18 additions and 0 deletions

@ -218,3 +218,11 @@ class SCENE_OT_freestyle_module_open(bpy.types.Operator):
text = bpy.data.texts.load(self.filepath, self.make_internal)
self.freestyle_module.script = text
return {'FINISHED'}
classes = (
SCENE_OT_freestyle_add_edge_marks_to_keying_set,
SCENE_OT_freestyle_add_face_marks_to_keying_set,
SCENE_OT_freestyle_fill_range_by_selection,
SCENE_OT_freestyle_module_open,
)

@ -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: