From 4056db22cdf3be0d2601b40eb7e29ab23ad051e3 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 20 Feb 2014 22:01:10 +0600 Subject: Motion tracking panel compactification in 3D viewport properties Patch by Sebastian Koenig, thanks! --- release/scripts/startup/bl_ui/space_view3d.py | 11 ++++++----- 1 file 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): -- cgit v1.2.3