Hey Guys,
I have a small script which some times get in to too much of a process and the UI updates goes for a toss. I have a function to create progress bar and ‘executing deferred’ the main function as to run it in other thread. Now, it works but I want to make the progress bar, which is in the main thread, get updated from the other function, step by step. For eg:
def UI():
window with progress bar
def operation():
the actual operation
update progressbar here
operation
update progressbar here and so on..
any thoughts? Thanks in advance guys.