Hi, I'm learning PyGTK and I have a parent window and a child window. Inside of a parent window's method, i create the child window and then I refresh a treeview... something like that:
def add_user(self, widget, data = None):
save_user.SaveUser(self.window)
self.load_tree_view()
But, when it's running, the child window appears and the load_tree_view() method is executed. I want that parent window wait until the child window is opened/showed. After that, load_tree_view runs ...
How can I do that? Thank you.