From: Kevin A. <ka...@us...> - 2004-07-28 15:34:39
|
Update of /cvsroot/pythoncard/PythonCard/samples/tictactoe In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31349/samples/tictactoe Modified Files: tictactoe.py Log Message: added event.skip() so New Game button still works Index: tictactoe.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/tictactoe/tictactoe.py,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** tictactoe.py 28 Jul 2004 07:12:49 -0000 1.20 --- tictactoe.py 28 Jul 2004 15:34:30 -0000 1.21 *************** *** 194,197 **** --- 194,199 ---- print "illegal move" # play a beep or do some other warning, a dialog would be too much + else: + event.skip() def on_btn0_mouseUp(self, event): |