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:
authorIchthyostega <prg@ichthyostega.de>2016-08-19 15:33:49 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-08-23 12:53:35 +0300
commitfd65a649303cee33266c6fffffab5f86df47545e (patch)
treec8b512ab28b66f03399ac77bb1663fb9353f93c3 /release
parent3dbe1744402c2790d7854f09cf977bb275436479 (diff)
2D stabilization: change presentation of target_scale in UI
Alongside with this change, we fix disabling of Autoscale, because this feature works even when rotation/scale is disabled.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index 8d581e84e25..5cc135392c1 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -960,7 +960,6 @@ class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, Panel):
icon='DOWNARROW_HLT')
row = layout.row()
- row.active = stab.use_stabilize_rotation
row.prop(stab, "use_autoscale")
sub = row.row()
sub.active = stab.use_autoscale
@@ -971,10 +970,9 @@ class CLIP_PT_stabilization(CLIP_PT_reconstruction_panel, Panel):
# Hrm, how to make it more obvious label?
row.prop(stab, "target_position", text="")
col.prop(stab, "target_rotation")
- if stab.use_autoscale:
- col.label(text="Auto Scale Factor: %5.3f" % (1.0 / stab.target_zoom))
- else:
- col.prop(stab, "target_zoom")
+ row = col.row(align=True)
+ row.prop(stab, "target_scale")
+ row.active = not stab.use_autoscale
col = layout.column(align=True)
col.prop(stab, "influence_location")