VSE UI: Add buttons for swap Effect strip inputs

The feature where the active strip determines what strip will be the
first input in effect strips can be quite a puzzle for users.
The operator to swap the inputs is hidden in the Strip menu.

This adds the swapping to the Effect sidebar panel.

Differential Revision: https://developer.blender.org/D7849
This commit is contained in:
Peter Fog
2020-05-28 14:17:22 -04:00
committed by Hans Goudey
parent 155cd03599
commit 1be79dc2a0

View File

@@ -1030,10 +1030,14 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
if strip.input_count > 0: if strip.input_count > 0:
col = layout.column() col = layout.column()
col.enabled = False row = col.row()
col.prop(strip, "input_1") row.prop(strip, "input_1")
if strip.input_count > 1: if strip.input_count > 1:
col.prop(strip, "input_2") row.operator("sequencer.swap_inputs", text="", icon="SORT_ASC")
row = col.row()
row.prop(strip, "input_2")
row.operator("sequencer.swap_inputs", text="", icon="SORT_DESC")
strip_type = strip.type strip_type = strip.type