How can I force ttk to update the screen? I'm running a long loop and would like to display some interim results, but ttk waits until it finishes the loop to update the screen.

I tried inserting sleep and after calls in the loop, but that didn't help.

link|improve this question

78% accept rate
possible duplicate of Tkinter: Updating Labels mid-loop – Steven Rumbalski Oct 26 '11 at 16:59
update_idletasks() appears to be the answer, at least for me. That question was about update_idletasks() not working. – foosion Oct 27 '11 at 11:55
feedback

1 Answer

update_idletasks() appears to be the answer. For example adding

 relevant_widget.update_idletasks()

in the loop works.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.