fix(main.py): replace 'n' with 'b' for save and render commands to avoid confusion
This commit is contained in:
@@ -1860,7 +1860,7 @@ class VideoEditor:
|
||||
print(" N: Next file")
|
||||
print(" n: Previous file")
|
||||
print(" Enter: Save image (overwrites if '_edited_' in name)")
|
||||
print(" n: Save image as _edited_edited")
|
||||
print(" b: Save image as _edited_edited")
|
||||
print(" Q/ESC: Quit")
|
||||
print()
|
||||
else:
|
||||
@@ -1892,7 +1892,7 @@ class VideoEditor:
|
||||
print(" N: Next video")
|
||||
print(" n: Previous video")
|
||||
print(" Enter: Render video (overwrites if '_edited_' in name)")
|
||||
print(" n: Render video")
|
||||
print(" b: Render video")
|
||||
print(" x: Cancel render")
|
||||
print(" Q/ESC: Quit")
|
||||
print()
|
||||
@@ -2040,7 +2040,7 @@ class VideoEditor:
|
||||
elif key == ord("n"):
|
||||
if len(self.video_files) > 1:
|
||||
self.next_video()
|
||||
elif key == ord("m"):
|
||||
elif key == ord("b"):
|
||||
directory = self.video_path.parent
|
||||
base_name = self.video_path.stem
|
||||
extension = self.video_path.suffix
|
||||
|
Reference in New Issue
Block a user