futnuh
23-05-2007 07:06:30
How can one detect if the user presses the 'close' X up at the top right of the window header? Not surprisingly, I'm getting a lingering python process after the window disappears ...
futnuh
23-05-2007 07:06:30
dermont
23-05-2007 07:37:00
def loop(self):
if(self.renderWindow.isClosed()):
return False
..
futnuh
23-05-2007 08:07:42