[Bf-blender-cvs] [069bc40] master: 2D stabilizer: Remove redundant rows from the interface

Sergey Sharybin noreply at git.blender.org
Wed Aug 17 10:46:07 CEST 2016


Commit: 069bc4086c8afbf03d5fd5e8d63fcd6c46b2864e
Author: Sergey Sharybin
Date:   Wed Aug 17 10:45:52 2016 +0200
Branches: master
https://developer.blender.org/rB069bc4086c8afbf03d5fd5e8d63fcd6c46b2864e

2D stabilizer: Remove redundant rows from the interface

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

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 ee6c068..c709410 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")




More information about the Bf-blender-cvs mailing list