From: Guido van Rossum Date: Mon, 20 Jun 1994 11:36:09 +0000 (+0000) Subject: Fix initial fill color of square X-Git-Tag: v1.1~309 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e7571856f3f59c73527ceefcf01e8a6b6f42502b;p=thirdparty%2FPython%2Fcpython.git Fix initial fill color of square ., --- diff --git a/Demo/tkinter/guido/tst.py b/Demo/tkinter/guido/tst.py index ea573d24de83..818d90bf659e 100755 --- a/Demo/tkinter/guido/tst.py +++ b/Demo/tkinter/guido/tst.py @@ -26,7 +26,7 @@ class Stuff(Canvas): {'width': 100, 'height': 100}) Canvas.config(self, cnf) self.create_rectangle(30, 30, 70, 70, - {'fill': 'red', 'tags': 'box'}) + {'fill': 'blue', 'tags': 'box'}) Canvas.bind(self, 'box', '', self.enter) Canvas.bind(self, 'box', '', self.leave)