I'm getting funny conflicts between progress bar / message_print and the cadwork prompt.
I'm showing progress bar with uc.show_progress_bar() and message with uc.print_message(), on top of it comes the message prompt from cadwork ec.delete_processes_keep_cutting_bodies([element_id], True).
The prompt can't take input and blocks the entire window. I'm suspecting the message or progress bar comes in conflict with the prompt for input...
Version 2026 (33.0.317.8814)
Build 317, 2026-07-18

to reproduce(you need a beam with machining data calculated) :
def main():
uc.show_progress_bar()
uc.print_message("Hello", 0, 0)
uc.print_message("Michi", 1, 0)
element_ids = ec.get_active_identifiable_element_ids()
ec.delete_processes_keep_cutting_bodies(element_ids, True)
return
I'm getting funny conflicts between progress bar / message_print and the cadwork prompt.
I'm showing progress bar with
uc.show_progress_bar()and message withuc.print_message(), on top of it comes the message prompt from cadworkec.delete_processes_keep_cutting_bodies([element_id], True).The prompt can't take input and blocks the entire window. I'm suspecting the message or progress bar comes in conflict with the prompt for input...
Version 2026 (33.0.317.8814)
Build 317, 2026-07-18
to reproduce(you need a beam with machining data calculated) :