From: <ror...@us...> - 2007-07-01 14:16:15
|
Revision: 75 http://roreditor.svn.sourceforge.net/roreditor/?rev=75&view=rev Author: rorthomas Date: 2007-07-01 07:16:14 -0700 (Sun, 01 Jul 2007) Log Message: ----------- * minor fixes to the starter regarding exit Modified Paths: -------------- trunk/lib/ror/starter.py Modified: trunk/lib/ror/starter.py =================================================================== --- trunk/lib/ror/starter.py 2007-07-01 14:10:37 UTC (rev 74) +++ trunk/lib/ror/starter.py 2007-07-01 14:16:14 UTC (rev 75) @@ -107,10 +107,12 @@ def OnUpdate(self, event=None): import svngui gui = svngui.svnUpdate() + del gui def checkForUpdate(self): import svn return svn.checkForUpdate() + def OnStartRoR(self, event=None): try: @@ -184,7 +186,8 @@ self.btnStartTerrainEditor.Enable(True) def OnExit(self, event=None): - self.Close() + self.Close() + sys.exit(0) def __set_properties(self): try: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |