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
Notes: blender-bot 2023-02-14 11:14:31 +01:00
Referenced by issue #38518, openGL Mesh salad
Referenced by issue #38500, Audio of a scene strip can't be muted
1 changed files with 2 additions and 0 deletions

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)