[Bf-blender-cvs] [acbef39] master: 2D stabilizer: Cover rotation tracks label with enabled flag

Sergey Sharybin noreply at git.blender.org
Wed Aug 17 10:56:02 CEST 2016


Commit: acbef397ac5a0916344dcde87222088ed0f6d200
Author: Sergey Sharybin
Date:   Wed Aug 17 10:55:41 2016 +0200
Branches: master
https://developer.blender.org/rBacbef397ac5a0916344dcde87222088ed0f6d200

2D stabilizer: Cover rotation tracks label with enabled flag

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index c709410..7dfa069 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -938,10 +938,10 @@ class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, Panel):
             sub.menu('CLIP_MT_stabilize_2d_specials', text="",
                      icon='DOWNARROW_HLT')
 
-            row = box.row()
-            row.label(text="Tracks For Rotation / Scale")
-            row = box.row()
-            row.active = stab.use_stabilize_rotation
+            col = box.column()
+            col.active = stab.use_stabilize_rotation
+            col.label(text="Tracks For Rotation / Scale")
+            row = col.row()
             row.template_list("UI_UL_list", "stabilization_rotation_tracks", stab, "rotation_tracks",
                               stab, "active_rotation_track_index", rows=2)




More information about the Bf-blender-cvs mailing list