Fix T57394: missing bl_category in panel (custom props / stereoscopy)

Differential Revision: https://developer.blender.org/D3835
This commit is contained in:
Philipp Oeser 2018-10-26 20:30:41 +02:00
parent 3bc8bc0709
commit 94ab6429bb

@ -4993,6 +4993,7 @@ class VIEW3D_PT_grease_pencil(AnnotationDataPanel, Panel):
class VIEW3D_PT_view3d_stereo(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_category = "View"
bl_label = "Stereoscopy"
bl_options = {'DEFAULT_CLOSED'}
@ -5033,6 +5034,7 @@ class VIEW3D_PT_view3d_stereo(Panel):
class VIEW3D_PT_context_properties(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'UI'
bl_category = "View"
bl_label = "Properties"
bl_options = {'DEFAULT_CLOSED'}