[Bf-blender-cvs] [4056db2] master: Motion tracking panel compactification in 3D viewport properties

Sergey Sharybin noreply at git.blender.org
Thu Feb 20 17:02:13 CET 2014


Commit: 4056db22cdf3be0d2601b40eb7e29ab23ad051e3
Author: Sergey Sharybin
Date:   Thu Feb 20 22:01:10 2014 +0600
https://developer.blender.org/rB4056db22cdf3be0d2601b40eb7e29ab23ad051e3

Motion tracking panel compactification in 3D viewport properties

Patch by Sebastian Koenig, thanks!

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

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 5cfcf5f..98c855d 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):




More information about the Bf-blender-cvs mailing list