Skip to content

Commit 781ba0c

Browse files
authored
V3.8.1 - Progress Bar (#82)
Fixed typo preventing Depth generation from starting
1 parent e48c12a commit 781ba0c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

core/render_depth.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2762,7 +2762,7 @@ def open_video(status_label, progress_bar, batch_size_widget, output_dir_var, in
27622762
cancel_requested.clear()
27632763
suspend_flag.clear()
27642764
status_label.config(text="🔄 Processing video...")
2765-
progess_bar.config(mode="determinate", maximum=100, value=0)
2765+
progress_bar.config(mode="determinate", maximum=100, value=0)
27662766

27672767
cap = cv2.VideoCapture(file_path)
27682768
total_frames_all = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
@@ -2812,3 +2812,4 @@ def _thread_hook(args):
28122812
_log_ex(args.exc_type, args.exc_value, args.exc_traceback)
28132813
threading.excepthook = _thread_hook
28142814

2815+

0 commit comments

Comments
 (0)