From: Kevin A. <ka...@us...> - 2004-05-05 16:54:05
|
Update of /cvsroot/pythoncard/PythonCard/samples/life In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28150/samples/life Modified Files: life.py life.rsrc.py Log Message: removed on_menuFileExit_select, using Background on_exit_command instead Index: life.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/life/life.py,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** life.py 29 Apr 2004 20:13:47 -0000 1.36 --- life.py 5 May 2004 16:53:26 -0000 1.37 *************** *** 375,381 **** event.skip() - def on_menuFileExit_select(self, event): - self.close() - def on_setScale_command(self, event): self.setCanvasAttributes(int(event.target.name[9:])) --- 375,378 ---- Index: life.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/life/life.rsrc.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** life.rsrc.py 19 Dec 2002 04:49:34 -0000 1.4 --- life.rsrc.py 5 May 2004 16:53:26 -0000 1.5 *************** *** 31,35 **** { 'type':'MenuItem', 'name':'menuFileExit', ! 'label':'E&xit\tAlt+X' } ] }, { 'type':'Menu', 'name':'menuEdit', --- 31,36 ---- { 'type':'MenuItem', 'name':'menuFileExit', ! 'label':'E&xit\tAlt+X', ! 'command':'exit' } ] }, { 'type':'Menu', 'name':'menuEdit', |