From acbef397ac5a0916344dcde87222088ed0f6d200 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 17 Aug 2016 10:55:41 +0200 Subject: 2D stabilizer: Cover rotation tracks label with enabled flag --- release/scripts/startup/bl_ui/space_clip.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py index c7094109261..7dfa0693d20 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) -- cgit v1.2.3