I’m new to GUI programming with python and gtk, so this is a bit of a beginners question. I have a function that is called when a button is pressed which does various tasks, and a TextView widget which I write to after each task is completed. The problem is that the TextView widget doesn’t update until the entire function has finished. I need it to update after each task.
Share
After each update to the TextView call
You can do your update through a custom function:
From the PyGTK FAQ: How can I force updates to the application windows during a long callback or other internal operation?