I am making an application using glade and python in Ubuntu. I used the about dialog widget to make an about page that is accessed via a drop down menu. When I open this about dialog the first time it works fine. When I close it with the 'x' in the top left corner it will not reopen. I have my 'delete-event' signal bound to a function close_about_window() which looks like this.
def close_about_window(self, *args):
---- self.about_window.hide()
Also if anyone knows the signal for the "close" button located at the bottom of the screen by license and credits that would be greatly appreciated.