Commit: 94ab6429bbdaf9f3541c715c5ae32647d454692a Author: Philipp Oeser Date: Fri Oct 26 20:30:41 2018 +0200 Branches: blender2.8 https://developer.blender.org/rB94ab6429bbdaf9f3541c715c5ae32647d454692a
Fix T57394: missing bl_category in panel (custom props / stereoscopy) Differential Revision: https://developer.blender.org/D3835 =================================================================== M release/scripts/startup/bl_ui/space_view3d.py =================================================================== diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py index 750c8fcd6a9..26d019a8447 100644 --- a/release/scripts/startup/bl_ui/space_view3d.py +++ b/release/scripts/startup/bl_ui/space_view3d.py @@ -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'} _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
