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>2014-02-20 20:01:10 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-02-20 20:01:53 +0400
commit4056db22cdf3be0d2601b40eb7e29ab23ad051e3 (patch)
tree56241e0ed59603e782a857368ce1bf30679a941c
parent28f3cc3eb7026ef931732c332879bbbe81d9bc3b (diff)
Motion tracking panel compactification in 3D viewport properties
Patch by Sebastian Koenig, thanks!
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 5cfcf5f6f7a..98c855d9419 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2893,11 +2893,12 @@ class VIEW3D_PT_view3d_motion_tracking(Panel):
col = layout.column()
col.active = view.show_reconstruction
- col.prop(view, "show_bundle_names")
- col.prop(view, "show_camera_path")
- col.label(text="Tracks:")
- col.prop(view, "tracks_draw_type", text="")
- col.prop(view, "tracks_draw_size", text="Size")
+ col.prop(view, "show_camera_path", text="Camera Path")
+ col.prop(view, "show_bundle_names", text="3D Marker Names")
+ col.label(text="Track Type and Size:")
+ row = col.row(align=True)
+ row.prop(view, "tracks_draw_type", text="")
+ row.prop(view, "tracks_draw_size", text="")
class VIEW3D_PT_view3d_meshdisplay(Panel):