Fix running space_node directly

Part of T65393
This commit is contained in:
Campbell Barton 2019-08-12 22:52:43 +10:00
parent 961d43c623
commit 3736dabd93

@ -676,7 +676,12 @@ def node_draw_tree_view(_layout, _context):
# Adapt properties editor panel to display in node editor. We have to
# copy the class rather than inherit due to the way bpy registration works.
def node_panel(cls):
node_cls = type('NODE_' + cls.__name__, cls.__bases__, dict(cls.__dict__))
node_cls_dict = cls.__dict__.copy()
# Needed for re-registration.
node_cls_dict.pop("bl_rna", None)
node_cls = type('NODE_' + cls.__name__, cls.__bases__, node_cls_dict)
node_cls.bl_space_type = 'NODE_EDITOR'
node_cls.bl_region_type = 'UI'