This commit is contained in:
edschuy95 2026-01-22 19:25:16 -05:00
parent 6ec1519bab
commit 7c3d5db62c

View file

@ -723,9 +723,10 @@ def main():
menu_result_queue.put(result)
# Run the menu in a separate thread
menu_thread = threading.Thread(target=run_menu)
menu_thread.start()
menu_thread.join() # Wait for menu to complete
#menu_thread = threading.Thread(target=run_menu)
#menu_thread.start()
#menu_thread.join() # Wait for menu to complete
run_menu()
# Get the result from the queue
choice = menu_result_queue.get()