commit 69b44795abbc1a40f392f09be0a77cc93ff3ea2e
parent f2f149c94d165d05b1951362d50a83c3d3a9b554
Author: rbckman <rob@tarina.org>
Date: Sun, 20 Apr 2025 20:42:44 +0100
always record new shot with record
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/gonzopi.py b/gonzopi.py
@@ -1417,6 +1417,7 @@ def main():
shot = shots+1
take = 1
takes=1
+ shots=shots+1
elif pressed == "retake":
if shot == shots+1 and takes == 0:
shot = shots
@@ -1427,6 +1428,7 @@ def main():
shot=shots+1
take=1
takes=1
+ shots=shots+1
elif pressed == 'retake_now':
takes = counttakes(filmname, filmfolder, scene, shot)
take = takes + 1