()
| 1569 | progress_label = ttk.Label(progress_frame, text="Processing...", bootstyle="info", background="#040D12") |
| 1570 | |
| 1571 | def run_start_progress_threaded(): |
| 1572 | thread = threading.Thread(target=start_progress, daemon=True) |
| 1573 | thread.start() |
| 1574 | |
| 1575 | def start_progress(): |
| 1576 | global results_folder |