From 982904fcc927beb0122b1119448716958bcf12c1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 4 Jan 2016 21:08:14 +1100 Subject: Fix T47109: Expose sound data-block selector --- release/scripts/startup/bl_ui/space_sequencer.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py index 34a0bacf13b..ab993d1c640 100644 --- a/release/scripts/startup/bl_ui/space_sequencer.py +++ b/release/scripts/startup/bl_ui/space_sequencer.py @@ -783,13 +783,10 @@ class SEQUENCER_PT_sound(SequencerButtonsPanel, Panel): strip = act_strip(context) sound = strip.sound - # TODO: add support to handle SOUND datablock in sequencer soundstrips... For now, hide this useless thing! - # layout.template_ID(strip, "sound", open="sound.open") - - # layout.separator() - layout.prop(strip, "filepath", text="") - + layout.template_ID(strip, "sound", open="sound.open") if sound is not None: + layout.prop(sound, "filepath", text="") + row = layout.row() if sound.packed_file: row.operator("sound.unpack", icon='PACKAGE', text="Unpack") -- cgit v1.2.3