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:
authorPeter Schlaile <peter@schlaile.de>2010-05-31 01:17:59 +0400
committerPeter Schlaile <peter@schlaile.de>2010-05-31 01:17:59 +0400
commitd7dd651e70e6143582990f07dfecadf627d27617 (patch)
tree580251c17bdc1a4a0b2e12dcfc106a7f15938f0a /release/scripts/ui/space_sequencer.py
parent03220bfe71ba1605c7e1428132f7e29ab2ff01bb (diff)
== Sequencer ==
This makes volume range larger and adds an additional attenuation-variable to RNA, which makes volume-changes in dezibel units possible.
Diffstat (limited to 'release/scripts/ui/space_sequencer.py')
-rw-r--r--release/scripts/ui/space_sequencer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py
index c3f056b1394..b94acf6f3ad 100644
--- a/release/scripts/ui/space_sequencer.py
+++ b/release/scripts/ui/space_sequencer.py
@@ -457,7 +457,7 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel):
row = layout.row(align=True)
sub = row.row()
sub.scale_x = 2.0
-
+
if not context.screen.animation_playing:
sub.operator("screen.animation_play", text="", icon='PLAY')
else:
@@ -666,6 +666,7 @@ class SEQUENCER_PT_sound(SequencerButtonsPanel):
row.prop(strip.sound, "caching")
layout.prop(strip, "volume")
+ layout.prop(strip, "attenuation")
col = layout.column(align=True)
col.label(text="Trim Duration:")