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

Exposed Audio Volume of a scene to properties of a scene strip.
This commit is contained in:
Sergey Sharybin
2014-02-06 13:50:42 +06:00
parent 39ad2cd8f8
commit 2b9702f4bf

View File

@@ -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)