[Bf-blender-cvs] [94ab6429bbd] blender2.8: Fix T57394: missing bl_category in panel (custom props / stereoscopy)

Philipp Oeser noreply at git.blender.org
Sun Oct 28 10:45:30 CET 2018


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'}



More information about the Bf-blender-cvs mailing list