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>2016-08-17 11:55:41 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-08-17 11:55:41 +0300
commitacbef397ac5a0916344dcde87222088ed0f6d200 (patch)
treeab53df97b22022fd5d857b6d6d8ba6916abe7cdc
parent1fb8bbcd3e978444e76ddbb090268b824b9d9894 (diff)
2D stabilizer: Cover rotation tracks label with enabled flag
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py8
1 files 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)