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:45:52 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-08-17 11:45:52 +0300
commit069bc4086c8afbf03d5fd5e8d63fcd6c46b2864e (patch)
tree7cc0d6e99cd8aeba8953486de9e32f56025c2ca3 /release
parent83d94ef4d054ade1edc5888d6782f096af325e62 (diff)
2D stabilizer: Remove redundant rows from the interface
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index ee6c068dc71..c7094109261 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -977,10 +977,8 @@ class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, Panel):
col = layout.column()
col.active = stab.use_stabilize_rotation
- row = col.row()
- row.prop(stab, "influence_rotation")
- row = col.row()
- row.prop(stab, "influence_scale")
+ col.prop(stab, "influence_rotation")
+ col.prop(stab, "influence_scale")
layout.prop(stab, "filter_type")