Skip to content
Snippets Groups Projects
Commit 42b9469d authored by Doug Hammond's avatar Doug Hammond
Browse files

extensions_framework: inherit property_group_renderer from bpy.types.Panel,...

extensions_framework: inherit property_group_renderer from bpy.types.Panel, works with manual RNA registration
parent 99c45662
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ def _get_item_from_context(context, path): ...@@ -53,7 +53,7 @@ def _get_item_from_context(context, path):
context = getattr(context, p) context = getattr(context, p)
return context return context
class property_group_renderer(object): class property_group_renderer(bpy.types.Panel):
"""Mix-in class for sub-classes of bpy.types.Panel. This class """Mix-in class for sub-classes of bpy.types.Panel. This class
will provide the draw() method which implements drawing one or will provide the draw() method which implements drawing one or
more property groups derived from more property groups derived from
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment