From 4ffd4cd321e886b3ac1f839d9ed5c0e8c8d38e54 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Thu, 4 Sep 2025 22:11:06 +0200 Subject: [PATCH] fix(main.py): correct key binding for video navigation to avoid duplication --- croppa/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/croppa/main.py b/croppa/main.py index aeb40ef..5a4f905 100644 --- a/croppa/main.py +++ b/croppa/main.py @@ -1433,10 +1433,10 @@ class VideoEditor: elif key == ord("2"): self.cut_end_frame = self.current_frame print(f"Set cut end at frame {self.current_frame}") - elif key == ord("n"): + elif key == ord("N"): if len(self.video_files) > 1: self.previous_video() - elif key == ord("N"): + elif key == ord("n"): if len(self.video_files) > 1: self.next_video() elif key == 13: # Enter