[Bf-blender-cvs] [2b9702f] master: Fix T38500: Audio of a scene strip can't be muted

Sergey Sharybin noreply at git.blender.org
Thu Feb 6 08:51:15 CET 2014


Commit: 2b9702f4bfb4b26a8bcef0288c8fe2d742699184
Author: Sergey Sharybin
Date:   Thu Feb 6 13:50:42 2014 +0600
https://developer.blender.org/rB2b9702f4bfb4b26a8bcef0288c8fe2d742699184

Fix T38500: Audio of a scene strip can't be muted

Exposed Audio Volume of a scene to properties of a scene strip.

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

M	release/scripts/startup/bl_ui/space_sequencer.py

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

diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index d7acffa..fcd70dd 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)




More information about the Bf-blender-cvs mailing list