This commit is contained in:
2021-11-05 10:33:55 +02:00
parent f11c7d65fa
commit 32ebfb7dee
4 changed files with 13 additions and 12 deletions

View File

@@ -276,14 +276,14 @@ def main():
if k & 0xFF == ord("z"): # move to previous ts
for ts in reversed(sorted(stamps)):
if ts < nr-1:
nr = ts-1
if ts < nr - 1:
nr = ts - 1
read_next = True
break
if k & 0xFF == ord("c"): # move to previous ts
for ts in sorted(stamps):
if ts > nr:
nr = ts-1
nr = ts - 1
read_next = True
break