From e7571856f3f59c73527ceefcf01e8a6b6f42502b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 20 Jun 1994 11:36:09 +0000 Subject: [PATCH] Fix initial fill color of square ., --- Demo/tkinter/guido/tst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Demo/tkinter/guido/tst.py b/Demo/tkinter/guido/tst.py index ea573d24de8..818d90bf659 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)