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>2014-02-06 11:50:42 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-02-06 11:50:42 +0400
commit2b9702f4bfb4b26a8bcef0288c8fe2d742699184 (patch)
tree04adf99a7ee0637ee68f6ea8aaa24d73ef582562 /release/scripts/startup/bl_ui/space_sequencer.py
parent39ad2cd8f8ae97f58f9ddbe7462b5249df4e4692 (diff)
Fix T38500: Audio of a scene strip can't be muted
Exposed Audio Volume of a scene to properties of a scene strip.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index d7acffa05c7..fcd70dd9236 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -739,6 +739,8 @@ class SEQUENCER_PT_scene(SequencerButtonsPanel, Panel):
layout.template_ID(strip, "scene_camera")
if scene:
+ layout.prop(scene, "audio_volume", text="Audio Volume")
+
sta = scene.frame_start
end = scene.frame_end
layout.label(text=iface_("Original frame range: %d-%d (%d)") % (sta, end, end - sta + 1), translate=False)