Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-08-23 13:40:42 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-08-23 13:40:42 +0400
commit9f72bf78652ec7e8e586dbe3b5b648bce8a1cfc6 (patch)
tree96ef60e6a73536b4c9e74283487925c56cffff2d /release/scripts/startup/bl_ui/space_clip.py
parenta734ddc506197d2a0f266d3a6dfeccc94bda5669 (diff)
Tracking cleanup
- Collapse plane track panels by default - Hide 3D markers when in mask edit mode - Remove alpha from mask layers list Discussed with Sebastian and Roman.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_clip.py')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index f5ee29ba7d8..a75130a6605 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -316,6 +316,7 @@ class CLIP_PT_tools_plane_tracking(CLIP_PT_tracking_panel, Panel):
bl_space_type = 'CLIP_EDITOR'
bl_region_type = 'TOOLS'
bl_label = "Plane Track"
+ bl_options = {'DEFAULT_CLOSED'}
def draw(self, context):
layout = self.layout
@@ -594,6 +595,7 @@ class CLIP_PT_plane_track(CLIP_PT_tracking_panel, Panel):
bl_space_type = 'CLIP_EDITOR'
bl_region_type = 'UI'
bl_label = "Plane Track"
+ bl_options = {'DEFAULT_CLOSED'}
def draw(self, context):
layout = self.layout
@@ -718,7 +720,8 @@ class CLIP_PT_display(CLIP_PT_clip_view_panel, Panel):
col.prop(sc, "show_disabled", "Disabled Tracks")
col.prop(sc, "show_names", text="Names and Status")
- col.prop(sc, "show_bundles", text="3D Markers")
+ if sc.mode != 'MASK':
+ col.prop(sc, "show_bundles", text="3D Markers")
col.prop(sc, "use_mute_footage", text="Mute Footage")
col.prop(sc, "lock_selection")