From 0740af602434876475aca8af92e0898288483492 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sun, 7 Sep 2025 23:48:24 +0200 Subject: [PATCH] Update --- croppa/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/croppa/main.py b/croppa/main.py index f5c14ac..010b798 100644 --- a/croppa/main.py +++ b/croppa/main.py @@ -495,9 +495,9 @@ class VideoEditor: ): """Seek video with different frame counts based on modifiers""" if ctrl_pressed: - frames = direction * 600 # Ctrl: 60 frames + frames = direction * 60 # Ctrl: 60 frames elif shift_pressed: - frames = direction * 30 # Shift: 10 frames + frames = direction * 10 # Shift: 10 frames else: frames = direction * 1 # Default: 1 frame