[Bf-blender-cvs] [34069b7] multiview: Fix missing panels (likely removed in a oerge conflict "fix")

Dalai Felinto noreply at git.blender.org
Wed Feb 4 12:47:36 CET 2015


Commit: 34069b71c4fe35f99619ce30f186fd52bde452da
Author: Dalai Felinto
Date:   Wed Feb 4 09:46:22 2015 -0200
Branches: multiview
https://developer.blender.org/rB34069b71c4fe35f99619ce30f186fd52bde452da

Fix missing panels (likely removed in a oerge conflict "fix")

===================================================================

M	release/scripts/startup/bl_ui/space_sequencer.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index ce87ae2..c03f02e 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -1063,6 +1063,23 @@ class SEQUENCER_PT_modifiers(SequencerButtonsPanel, Panel):
                     col.prop(mod, "contrast")
 
 
+class SEQUENCER_PT_grease_pencil(GreasePencilDataPanel, SequencerButtonsPanel_Output, Panel):
+    bl_space_type = 'SEQUENCE_EDITOR'
+    bl_region_type = 'UI'
+
+    # NOTE: this is just a wrapper around the generic GP Panel
+    # But, it should only show up when there are images in the preview region
+
+
+class SEQUENCER_PT_grease_pencil_tools(GreasePencilToolsPanel, SequencerButtonsPanel_Output, Panel):
+    bl_space_type = 'SEQUENCE_EDITOR'
+    bl_region_type = 'UI'
+
+    # NOTE: this is just a wrapper around the generic GP tools panel
+	# It contains access to some essential tools usually found only in
+	# toolbar, which doesn't exist here...
+
+
 class SEQUENCER_PT_stereo_3d(SequencerButtonsPanel, Panel):
     bl_label = "Stereoscopy"
     bl_options = {'DEFAULT_CLOSED'}




More information about the Bf-blender-cvs mailing list