From a3831aa3a14967cfbd830bfc0fbabfc32163f316 Mon Sep 17 00:00:00 2001 From: Urban Wallasch Date: Wed, 5 May 2021 22:31:33 +0200 Subject: [PATCH] * Fix: Include the saved customvf setting when checking index file. --- ffpreview.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ffpreview.py b/ffpreview.py index da53345..9c16aed 100755 --- a/ffpreview.py +++ b/ffpreview.py @@ -260,6 +260,8 @@ def chk_idxfile(): return False if chk['scene_thresh'] != thinfo['scene_thresh']: return False + if chk['customvf'] != thinfo['customvf']: + return False # do something with date? thinfo = chk return True -- 2.30.2