fix(main.py): allow 'u' key to skip frames in media grader

This commit is contained in:
2025-08-19 08:56:02 +02:00
parent 0826b8a8b7
commit 6b0cc279d7

View File

@@ -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