From a87e20bf3d7b6b308f5a10411ce77488478ab95c Mon Sep 17 00:00:00 2001 From: Bazza Date: Sat, 4 Feb 2023 19:46:16 -0300 Subject: [PATCH] Update to 3.3 It does not accept floating values --- operators/tools/subtitles_to_sequencer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operators/tools/subtitles_to_sequencer.py b/operators/tools/subtitles_to_sequencer.py index c9412e1..b8ab1ca 100644 --- a/operators/tools/subtitles_to_sequencer.py +++ b/operators/tools/subtitles_to_sequencer.py @@ -37,8 +37,8 @@ def subtitles_to_sequencer(context, subs): name=sub_name, type='TEXT', channel=open_channel, - frame_start=strip_start, - frame_end=strip_end + frame_start=int(strip_start), + frame_end=int(strip_end) ) text_strip.font = get_font(scene.subtitle_font)