From 6b0cc279d7784472bd34521665443266d8a3d187 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Tue, 19 Aug 2025 08:56:02 +0200 Subject: [PATCH] fix(main.py): allow 'u' key to skip frames in media grader --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index d8fa941..c0be4df 100644 --- a/main.py +++ b/main.py @@ -845,7 +845,7 @@ class MediaGrader: self.current_frame = 0 self.load_current_frame() - if key not in [ord("p")]: + if key not in [ord("p"), ord("u")]: print("Navigating to: ", self.current_index) self.current_index += 1