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: Next file")
|
||||||
print(" n: Previous file")
|
print(" n: Previous file")
|
||||||
print(" Enter: Save image (overwrites if '_edited_' in name)")
|
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(" Q/ESC: Quit")
|
||||||
print()
|
print()
|
||||||
else:
|
else:
|
||||||
@@ -1892,7 +1892,7 @@ class VideoEditor:
|
|||||||
print(" N: Next video")
|
print(" N: Next video")
|
||||||
print(" n: Previous video")
|
print(" n: Previous video")
|
||||||
print(" Enter: Render video (overwrites if '_edited_' in name)")
|
print(" Enter: Render video (overwrites if '_edited_' in name)")
|
||||||
print(" n: Render video")
|
print(" b: Render video")
|
||||||
print(" x: Cancel render")
|
print(" x: Cancel render")
|
||||||
print(" Q/ESC: Quit")
|
print(" Q/ESC: Quit")
|
||||||
print()
|
print()
|
||||||
@@ -2040,7 +2040,7 @@ class VideoEditor:
|
|||||||
elif key == ord("n"):
|
elif key == ord("n"):
|
||||||
if len(self.video_files) > 1:
|
if len(self.video_files) > 1:
|
||||||
self.next_video()
|
self.next_video()
|
||||||
elif key == ord("m"):
|
elif key == ord("b"):
|
||||||
directory = self.video_path.parent
|
directory = self.video_path.parent
|
||||||
base_name = self.video_path.stem
|
base_name = self.video_path.stem
|
||||||
extension = self.video_path.suffix
|
extension = self.video_path.suffix
|
||||||
|
Reference in New Issue
Block a user