correct fix for [#25737] Console error message

This commit is contained in:
Campbell Barton
2011-01-20 23:05:25 +00:00
parent 76940e6f5c
commit df6bb34c2b
2 changed files with 5 additions and 5 deletions

View File

@@ -611,10 +611,11 @@ class SEQUENCER_PT_input(SequencerButtonsPanel, bpy.types.Panel):
col.prop(strip.crop, "min_y")
col.prop(strip.crop, "max_x")
col = layout.column(align=True)
col.label(text="Trim Duration (hard):")
col.prop(strip, "animation_offset_start", text="Start")
col.prop(strip, "animation_offset_end", text="End")
if not isinstance(strip, bpy.types.EffectSequence):
col = layout.column(align=True)
col.label(text="Trim Duration (hard):")
col.prop(strip, "animation_offset_start", text="Start")
col.prop(strip, "animation_offset_end", text="End")
col = layout.column(align=True)
col.label(text="Trim Duration (soft):")

View File

@@ -1344,7 +1344,6 @@ static void rna_def_effect(BlenderRNA *brna)
rna_def_filter_video(srna);
rna_def_proxy(srna);
rna_def_input(srna); // XXX: why not? [#25737]
}
static void rna_def_multicam(BlenderRNA *brna)