From acaf2dbfdc57507a915a061f42c97676a46dec3d Mon Sep 17 00:00:00 2001 From: Askill Date: Wed, 11 Nov 2020 18:09:42 +0100 Subject: [PATCH] . --- Application/Exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/Exporter.py b/Application/Exporter.py index e97b2da..8dcbaf3 100644 --- a/Application/Exporter.py +++ b/Application/Exporter.py @@ -51,7 +51,7 @@ class Exporter: if layer.startFrame <= frameCount and layer.startFrame + len(layer.bounds) > frameCount: for (x, y, w, h) in layer.bounds[frameCount - layer.startFrame]: if x is None: - break + continue factor = videoReader.w / self.resizeWidth x = int(x * factor) y = int(y * factor)