Sequencer UI bugfix: translate / crop also work on effect output, UI was

missing
This commit is contained in:
2010-07-23 17:09:33 +00:00
parent 65fcb0edcf
commit b3dca80c5b

View File

@@ -487,6 +487,20 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel):
if not strip.use_effect_default_fade: if not strip.use_effect_default_fade:
col.prop(strip, "effect_fader", text="Effect fader") col.prop(strip, "effect_fader", text="Effect fader")
layout.prop(strip, "use_translation", text="Image Offset:")
if strip.use_translation:
col = layout.column(align=True)
col.prop(strip.transform, "offset_x", text="X")
col.prop(strip.transform, "offset_y", text="Y")
layout.prop(strip, "use_crop", text="Image Crop:")
if strip.use_crop:
col = layout.column(align=True)
col.prop(strip.crop, "top")
col.prop(strip.crop, "left")
col.prop(strip.crop, "bottom")
col.prop(strip.crop, "right")
def draw_panel_transform(self, strip): def draw_panel_transform(self, strip):
layout = self.layout layout = self.layout
col = layout.column() col = layout.column()